Home Forums WordPress Themes – Premium Preference Changing font Reply To: Changing font

#18144
Sushil Adhikari
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.