MyBB Community Forums

Full Version: Help Re-sizing font
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Thread says it all
I want to make the front in blue bigger, i've tried searching for it but can't seem to actually find it thanks?
[Image: 2pzkakn.png]
Well, it is in red now. But take a look at your table css.

Change font-size accordingly.
table {
    color: #F00606;
    font-family: Tahoma,Arial,Sans-Serif;
    font-size: 13px;
}
you can also make a class for it and put the css codes in global.css
example :
<div class="ftitle">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>
</div>

and the css code :

.ftitle {
font-size:15px;
}

you can change the 15px