MyBB Community Forums

Full Version: Increase/Change Font
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

My theme have small font by default, How can I edit size of fonts ?? also how to change font for overall forum text.

http://gyazo.com/9f1a2875566ff4a61a33a64e20735109


Thanks guys,
In global css:

body {
background: #efefef;
color: #000;
font-family: Verdana, Arial, Sans-Serif;
font-size: 13px;


and

table {
color: #000000;
font-family: Verdana, Arial, Sans-Serif;
font-size: 13px;

}

font-family represents the font face and font-size represents the text size. Modify as you wish.
Thanks