Change h1 and h2 font?

Discussion in 'Squirrel WordPress Theme' started by kawzoodi, Dec 20, 2013.

Thread Status:
Not open for further replies.
  1. kawzoodi

    kawzoodi New Member

    Joined:
    Dec 17, 2013
    Messages:
    3
    Likes Received:
    0
    Hi there,
    I'm trying to change the font of the header on my site.
    I've tried almost anything, is there anyone that can help me to find where i can change the font?
     

    Attached Files:

  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');
    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .header-info h1 {
    font-family: symbol;
    }
    .header-info h2 {
    font-family: symbol;
    }
    
    Inplace of "symbol" put your font type.
     
  3. kawzoodi

    kawzoodi New Member

    Joined:
    Dec 17, 2013
    Messages:
    3
    Likes Received:
    0
    Thank you, very much. But i won't work
    I've deleted the code in custom.js, and also typed the font-family as Tahoma, but is still the same font? :(
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  5. kawzoodi

    kawzoodi New Member

    Joined:
    Dec 17, 2013
    Messages:
    3
    Likes Received:
    0
    It works now! But thank you otherwise.

    I got this code to put in the CSS
    .full-content h3 {
    font-family: tahoma!important;
    }
    .footer h4{
    font-family: tahoma!important;
    }
     
Thread Status:
Not open for further replies.

Share This Page