MyBB Community Forums

Full Version: how to change font size in revolution gaming theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to change font size in revolution gaming theme
Open ACP > Themes and have a look at global.css for the following elements:

body { ... font size: 13px; }
#container { ... font size: 13px; }
#content { ... font size: 13px; }

Change the body font-size to either fixed px or relative em or %.
#container and #content are child elements of body, so the font-size definitions can be removed at all (these are inherited from the body).

[ExiTuS]