Change color of one area on home page?

Discussion in 'RoadFighter WordPress Theme' started by jlewtoo, Jul 2, 2013.

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

    jlewtoo New Member

    Joined:
    Apr 20, 2012
    Messages:
    14
    Likes Received:
    0
    Location:
    Irvine, CA
    Hello,
    I would like to change the color of one sentence on the home page underneath the name to the same teal-green color I am using on the rest of the site. See attached. Is this possible?
     

    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:
     //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;
    }
    .home-content .page_info h3{
    color:red;
    }
    Inplace of "red" put your color code.
     
  3. jlewtoo

    jlewtoo New Member

    Joined:
    Apr 20, 2012
    Messages:
    14
    Likes Received:
    0
    Location:
    Irvine, CA
    Thanks!
     
Thread Status:
Not open for further replies.

Share This Page