How do I switch to using a "regular" font rather than the cufon fonts. I don't like their look. Not clear. Or is there a way to use a better looking cufon? Thank you
Hello, Go to js > custom.js present in your theme directory and remove the code given below Code: //cufone Cufon.replace({ hover: true })('.add h2')('.reply',{ hover:true })('h1')('h2')('h3')('h4')('h5')('h6')('.add') ; Now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: h1,h2,h3,h4,h5,h6,a{ font-family:symbol!important; } p{ font-family:symbol!important; } .home-content .page_info h1 { line-height: 45px; font-family: symbol; } Inplace of "symbol" put your font type. This will solve your issue.