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,.content .post .date li', { fontFamily: 'MankSans-Medium', hover: true }); }); Now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: h1,h2,h3,h4,h5,h6,a{ font-family:MankSans-Medium!important; } p{ font-family:MankSans-Medium!important; } .home_content .home_text center h1 { font-family:MankSans-Medium!important; } Inplace of "MankSans-Medium" put your font type. This will solve your issue. Thanks