dvanton 0 Report post Posted February 3, 2011 I just purchsed Platform Pro and wondered how to globally set my main font to something with a non-serif. I know it's in the setting >> text and fonts - but I don't know how to change the font to Calibri or something similar.Currently it says Crimson+Text|Droid+Sans Also, is there a way to change the font size as well? Thanks. Share this post Link to post Share on other sites
dvanton 0 Report post Posted February 3, 2011 ...forgot to mention, I am happy with all other fonts on the template, it's just the body text that I would like to change. Share this post Link to post Share on other sites
Jean-Philippe 2 Report post Posted February 3, 2011 Hello Dave. Please have a look to these two Pagelines links : - Design Control - Custom CSS Rules Hope it helps. www.photoreview.fr | www.kankei.fr Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted February 4, 2011 Second karma point Jean-Philippe. Dave, let us know if you need further help. Thanks, Bryan Share this post Link to post Share on other sites
dvanton 0 Report post Posted February 5, 2011 Hey Guys, thanks for the links. But I am still not sure how it applies to changing my body font to something like Arial. Is there a CSS code that I use? Jean, I checked the links out, it will be very useful once I figure out how to apply it. Any help on replacing fonts would be appreciated... Share this post Link to post Share on other sites
Kate 3 Report post Posted February 5, 2011 Hi Dave - Are you trying to change the font-size for the entire site? If so, then you would apply these styles to the body tag. For instance: body{font-family:Calibri, arial, verdana; font-size:1.6em;} If that doesn't take, you may need to add the "!important" declaration, since you'll be overwriting other styles. For instance: body{font-family:Calibri, arial, verdana !important; font-size:1.6em !important;} Share this post Link to post Share on other sites
dvanton 0 Report post Posted February 7, 2011 Hi Kate - thanks. That did make the changes to the main body text, I've also adjusted the text size, but it didn't affect the header text. Is there an additional line that I can insert that will change the header font and size? Share this post Link to post Share on other sites
Guest Guest Report post Posted February 7, 2011 If you want to adjust the branding title and description here are a couple of examples of what you could do in custom CSS just grabbing Kate's example (you can change the font family/size to anything you'd like, this is just to show you which classes you need to adjust). #branding h1 a {font-family:Calibri, arial, verdana; font-size:1.6em;} #branding .site-description {font-family:Calibri, arial, verdana; font-size:1.0em;} Share this post Link to post Share on other sites