Small Caps on Homepage Heading

Discussion in 'Squirrel WordPress Theme' started by nkkauffold, Aug 10, 2013.

  1. nkkauffold

    nkkauffold New Member

    Joined:
    Jul 23, 2013
    Messages:
    1
    Likes Received:
    0
    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
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    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;
    }
     

Share This Page