I need to be able to have the freedom to have more font choices and size and color options as I am doing the text on posts, pages, and home page. Is there a css that you can provide or a plugin that you can suggest? Thanks for your time!
Hello, 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,#menu li a'); }); Now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: h1, h2, h3, h4, h5, h6{ font-size:30px; color:red; font-family:symbol; } p, a{ font-size:20px; color:red; symbol; } Inplace of "symbol" put your font type. Thanks & Regards Gourav Shrivastava