Color behind home page header?

Discussion in 'Cloriato WordPress Theme' started by fusionny, Dec 4, 2013.

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

    fusionny Guest

    Joined:
    Aug 8, 2013
    Messages:
    18
    Likes Received:
    0
    Is there any way to add a block of color behind the home page header?
    is it possible to change the color of the home page header text?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Could you please specify your issue with the help of screenshot images that of which area you want the background color
    and which text you want to change the color.
     
  3. fusionny

    fusionny Guest

    Joined:
    Aug 8, 2013
    Messages:
    18
    Likes Received:
    0
    Hi I would want the color to be behind this part of the site… and this text color to be changed too white... Screen Shot 2013-12-05 at 8.05.56 PM.png
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

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

    Code:
    .home_content {
    background: red;
    }
    
    2. Go to js > custom.js present in your theme directory and remove the code given below
    Code:
    //Font replace
    Cufon.replace('h1')('h2')('h3')('h4')('h5')('h6');
    now,
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .home_content h1 {
    color: red;
    }
     
  5. fusionny

    fusionny Guest

    Joined:
    Aug 8, 2013
    Messages:
    18
    Likes Received:
    0
    Thank you.. is this how i would change the text color of just that header?
     
  6. Piyush

    Piyush Support Staff

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

    Hello,

    Yes, the code provided by Gourav in the above post will works only for that heading and in place "red" you can put your color or color code.
     
  7. fusionny

    fusionny Guest

    Joined:
    Aug 8, 2013
    Messages:
    18
    Likes Received:
    0
    thank you.
     
Thread Status:
Not open for further replies.

Share This Page