Road Fighter Theme Options: font and color for Home Page Main Heading & Sub Heading

Discussion in 'RoadFighter WordPress Theme' started by dedieo62, Apr 16, 2014.

  1. dedieo62

    dedieo62 Member

    Joined:
    Apr 11, 2014
    Messages:
    158
    Likes Received:
    3
    Location:
    France
    Hello,

    How to change font and color for Home Page Main Heading and Home Page Sub Heading with Custom CSS ?

    Regards,
    Dedieo62
     
  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:
    //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:
    .home-content .page_info h1 {
    color:red;
    font-family:arial;
    line-height: 52px;
     
    }
    .home-content .page_info h3 {
    color:red;
    font-family:arial;
    } 

    Thanks & Regards
    Gourav Shrivastava
     

Share This Page