How can I change the fonts style of the Page titles? I want to leave the font style on the homepage but once I click on links to pages, I'd like to be able to change the style of the page title. Thanks
Hello, You have to import font from Google and after that you can change font style. Goto, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS ) of your dashboard Code: @import url(http://fonts.googleapis.com/css?family=Open+Sans); .page h1.page_title { font-size: 20px; font-family: 'Open Sans', sans-serif; color:green; } You can change font style according your need above code is for providing you a way to make change as per your need. And you can find online google font from here: https://www.google.com/fonts -Select a font style -Add to collection -Use -@import -Copy that code in your custom CSS. Thanks & Regards Pramod
The font I wanted is not available on google fonts I have to buy it for $29.00 Is there another option? Do we have other free choices?
Hello, Paste following code in Custom CSS and save it. Code: h1.page_title { font-weight: normal; } Thanks & Regards Yogesh Bhade