Hi,
in theme options I can set only heading font.
I want to set the same font throughout the site, How I do it?
Thanks
Stefano
Hi,
in theme options I can set only heading font.
I want to set the same font throughout the site, How I do it?
Thanks
Stefano
Hi Setfano,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
body {
font: 13px/1.65em "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
There may still be some specific elements that you will need to target to change there font but that will generally change the font for the entire site.
See the following for reference on customizing the css: http://www.w3schools.com/cssref/pr_font_font.asp
I'd recommend keep that same format so that it overwrites the current theme version which uses the font: declaration instead of font-family.
Regards,
Devin
You must log in to post.