Is it possible to use Different Fonts? The ones standard Cufon ones seem jaggy and unclear to me. Where would I change them? Thank you
Hello, Go to js > custom.js present in your theme directory and remove the code given below Code: //Cufon replacement Cufon.replace('h1')('h1:hover')('h2')('h3')('h4')('h5')('h6'); See the image for reference Now, Paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: h1, h2, h3, h4, h5, h6 { font-family: symbol ! important; } Inplace of "symbol" you can put your font. This will solve your issue.