Child Theme

Discussion in 'GeoCraft WordPress Theme' started by webunet, Jun 6, 2014.

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

    webunet Member

    Joined:
    Dec 14, 2012
    Messages:
    58
    Likes Received:
    1
    Location:
    Kalispell, Montana
    I sincerely appreciate your help in creating my child theme. You showed me that to change the background color, I needed to add the following to my style.css in my child directory.

    body {
    background-color:#ffffff
    }

    I am having difficulty identifying the other CSS components (areas on the page) that I want to alter. I have attached an image that shows which components I want to change the colors. Can you please point me in the right direction, what are these CSS identifiers?

    What is the CSS syntax to change those page areas?

    Thank you very much,

    Tom
     

    Attached Files:

  2. Gourav

    Gourav Support Staff

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

    Paste this code in style.css
    Code:
    .header_wrapper .header {
    background: red;
    }
    div.top_strip {
    background: red;
    }
    .menu_wrapper .menu-container {
    background: red;
    }
    #menu .ddsmoothmenu li a{
    color:red;
    }
    .content_wrapper .featured_content .featured_post .featured {
    background: red;
    }
     

    Inplace of "red" put your color code.

    Thanks & Regards
    Gourav Shrivastava
     
  3. webunet

    webunet Member

    Joined:
    Dec 14, 2012
    Messages:
    58
    Likes Received:
    1
    Location:
    Kalispell, Montana

    Attached Files:

  4. Gourav

    Gourav Support Staff

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

    Paste this code in style.css


    Code:
     .header_wrapper .header {
    background: #ffffff repeat-x bottom!important;
    }

    Thanks & Regards
    Gourav Shrivastava
     
  5. webunet

    webunet Member

    Joined:
    Dec 14, 2012
    Messages:
    58
    Likes Received:
    1
    Location:
    Kalispell, Montana
    That did it, thank you very much!

    Tom
     
Thread Status:
Not open for further replies.

Share This Page