- Joined
- Jan 22, 2025
- Messages
- 48
- Reaction score
- 72
- Points
- 127
This forum and it's Repo has an inconsistent font usage from Helvetica, Segoe UI, Arial Narrow, and little bit Montserrat. I suggest, if there's a custom CSS available on the control panel, to leave these font to the user's browser default font by using this:
Last bit of code is to make heading more consistent with body text. Of course, you can use your own font to strengthen the forums identity, example:
CSS:
body, button, input, select, textarea, .fr-box.fr-basic .fr-element{
font-family: sans-serif;
}
nav, h1, h2, h3, h4{
font-family: serif;
}
.bbHeading{
padding-left: 0;
}
Last bit of code is to make heading more consistent with body text. Of course, you can use your own font to strengthen the forums identity, example:
CSS:
@import url('https://fonts.googleapis.com/css2?family=Doto&family=DotGothic16');
body, button, input, select, textarea, .fr-box.fr-basic .fr-element{
font-family: 'DotGothic16', sans-serif;
}
nav, h1, h2, h3, h4{
font-family: 'Doto', serif;
}
.bbHeading{
padding-left: 0;
}