I wish to change the homepage heading fonts, and also change the heading fonts for each other page of my website. I installed the Google font widget, which is successful in changing font for paragraphs, however it does not change any heading fonts. How does one go about changing the font of the themes' homepage and paragraph headings? P.S. The specific font I wish to change the headings to is Google font "Lobster".
Go to js > custom.js present in your theme directory and remove the code given below Code: //Cufon Replacement in heading jQuery(document).ready(function() { //Cufon.replace('h1')('h2')('h3')('h4')('h5')('h6'); Cufon.replace('h1, h2, h3, h4, h5, h6,#menu li a'); }); Now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: h1,h2,h3,h4,h5,h6{ font-family:symbol; } Inplace of "symbol" put your font type.