How can i change the font for h1, h2 ,h3 etc.? It's now an 'cufon' font made of pixels…? I want to chance it in a 'normal' font. Thanks.
Hello, To remove cufon Go to the Theme directory > js > custom.js and remove code given below from there. 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 }); }); After that Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: h1, h2 ,h3{ font-family:your font family; }