Hello, I was able to change the font on the site to small caps by using the font-variant: small-caps; tag in the styling options section under theme options. How do I do the same thing for the homepage header and column headers? My site is www.kroevents.com Thank you! Nancy
Hello, Go to js > custom.js present in your theme directory and remove the code given below Code: //cufone Cufon.replace({ hover: true })('#colRight h2')('.reply',{ hover:true })('h1')('h2')('h3')('h4')('h5')('h6'); Check link for reference http://www.inkthemes.com/how-to-edit-internal-files-through-ftp/07/ Now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: h1, h2, h3, h4, h5, h6{ font-variant:small-caps; }