MyBB Community Forums

Full Version: How to make forum text bigger
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm new to MyBB and I need some help.


I want to increase the font size to be a little bit bigger than what the description for it is.
[Image: R9Jb9ov.png]
Add this to global.css:

table {
font-size: 15px!important;
}

Change 15 to whatever you desire.

It would be better to wrap it in a span or div & then target it directly. But since you are new, this should suffice.
ACP >> Templates >> Your theme's Templates >> Forum Bit Templates >> forumbit_depth2_forum


Find this line....

<strong><a href="{$forum_url}">{$forum['name']}</a></strong>


and change it as..... increase the font size as required....

<strong><a href="{$forum_url}"><span style="font-size:15px;">{$forum['name']}</span></a></strong>


EDIT: the above css change might also work but that would affect the entire forum in all pages not just in the place you want....