Is it possible to change the font types of the Slice theme in the ones used here? And how can I manage this? http://wordpress.org/themes/daffodil
Hello, Go to js > custom.js present in your theme directory and remove the code given below Code: Cufon.replace({ hover: true })('.add h2')('.reply',{ hover:true })('h1')('h2')('h3')('h4')('h5')('h6')('.add')('.post-info ') ; Now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: h1,h2,h3,h4,h5,h6,p,div,span,a{ font-family:symbol ! important; } Inplace of "symbol" put your font type. This will solve your issue.