MyBB Community Forums

Full Version: Forums font size?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I managed to increase the size of the text around the header but I can't figure out how to increase the font size of the forum categories and forum names. Any ideas? Thanks

Using the default style here
@timebunkers

The font size for the Category and Forums is under "Table" in the global.css

Currently set at font size 13px; Should be around line 348
Yeah, as suggested in the above post; search in the global.css for :

table

Then just change the:

font-size: 13px;

to whatever you want, hard-refresh and you are done.
(2020-08-21, 04:16 AM)ThistleProse Wrote: [ -> ]@timebunkers

The font size for the Category and Forums is under "Table" in the global.css

Currently set at font size 13px; Should be around line 348
That worked fine. Do you know the tag for setting the font size on the forum/category description? Thanks!
You're welcome!

It's this one, also in global.css:

.smalltext {
    font-size: 11px;

Just change to apply Smile