henrypwmoulton 0 Report post Posted July 30, 2011 How can I change fonts in PlatformPro without delving into Google Fonts or anything else. I want an easy way to change the header font, sub header font, body font etc. Share this post Link to post Share on other sites
catrina 103 Report post Posted July 30, 2011 You can use CSS to change the font families for each of the elements you want to change. For example, adding this CSS to PlatformPro > Custom Code > Custom CSS can change the header fonts (post titles on the blog page): div.post-title h2.entry-title {font-family: YOURFONTHERE;} Please post a link to your site so I can provide other examples you can use. Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
henrypwmoulton 0 Report post Posted July 31, 2011 http://moultz.com/ I'd like the header to be Tahoma and the body text to be Helvetica. Share this post Link to post Share on other sites
catrina 103 Report post Posted July 31, 2011 Please add the following CSS to PlatformPro Settings > Custom Code > Custom CSS: div.branding_wrapper {font-family: tahoma;} #column-main div.mcolumn-pad, div.banner-content, div.fboxtext {font-family: helvetica;} (This code changes fonts for the content I see on your website so far) Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites