Home › Forums › WordPress Themes – Premium › Preference › Changing font › Reply To: Changing font
August 14, 2013 at 6:44 pm
#18144
Moderator
Font size for just the main content in the Preference theme is a bit more tricky because everything is relative sizing to the body size setting. However, you can edit the #content container to resize the text to your needs. Styling for #content can be found in the style.css file around line 193 and looks like this:
#content {
min-height:120px;
padding:40px 15px;
border-bottom:1px solid #8faeb8;
color:#000;
}
Add this to it:
font-size: 12px;
Of course, you can change the font size to what you want.