Header font not changing

Discussion in 'RoadFighter WordPress Theme' started by midtownmft, Mar 5, 2014.

  1. midtownmft

    midtownmft New Member

    Joined:
    Mar 2, 2013
    Messages:
    23
    Likes Received:
    0
    Hi...I want the headers (H1,H2, etc...) to be arial. I'm using this code:

    h1, h2, h3, h4, h5, h6 {
    font: Arial;
    font-weight:normal;
    color:#010101;
    }

    The font is not changing. Please help...thanks!
     
  2. midtownmft

    midtownmft New Member

    Joined:
    Mar 2, 2013
    Messages:
    23
    Likes Received:
    0
  3. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Go to js > custom.js present in your theme directory and remove the code given below

    Code:
    //Cufon replacement
    Cufon.replace('h1')('h1:hover')('h2')('h3')('h4')('h5')('h6'); 
    Now,
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    h1, h2, h3, h4, h5, h6 {
    font-family: symbol ! important;
    font-weight:normal ! important;
    color: red ! important;
    } 
    In place of "symbol" you can put your font type.
    In place of "red" you can put your color or color code.
    This will solve your issue.
     

Share This Page