MyBB Community Forums

Full Version: Changing full site wide Fonts?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
As my heading says I want to change the font of text for my entire site. What's the easiest way to do it
Easiest way is to go to global.css and search for the current font and replace it with new font. If you are using a custom font or google font, then refer this tutorial I wrote
https://wallbb.co.uk/simple-tutorial-add...onts-mybb/

Regards
WallBB
(2020-04-17, 06:10 AM)WallBB Wrote: [ -> ]Easiest way is to go to global.css and search for the current font and replace it with new font. If you are using a custom font or google font, then refer this tutorial I wrote
https://wallbb.co.uk/simple-tutorial-add...onts-mybb/

Regards
WallBB

I am using VintageDaddyo's Cerise theme. I just want to change the present font to "verdana, arial, helvetica, sans-serif", I am not uploading anything. So, changing global.css will do it?
Edit the global.css with Advanced Mode and insert your font into:
body { font-family: Verdana, Arial, Helvetica, Sans-Serif; ... } to make the font used all over the page.

To clean up your CSS, you can also find more obsolete font-family and drop these lines.
Keep in mind that some elements like .codeblock { } should keep a monospaced font for best visual appearance of code within a post.

[ExiTuS]