How do I change the white background of the default theme?

Discussion in 'Infoway WordPress Theme' started by leadology, May 23, 2013.

  1. leadology

    leadology Member

    Joined:
    Dec 28, 2011
    Messages:
    100
    Likes Received:
    2
    For the actual homepage, posts, pages, etc., how do I change the default color of the site from white to say grey or darker etc? Thank you?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .body_wrapper{
    background: grey;
    }
    .header {
    background: transparent;
    }
    #featured {
    background: transparent;
    }
    .slider_wrapper {
    background: transparent;
    }
    .contentbox {
    background: transparent;
    }
    .feturebox {
    background: transparent;
    }
    .testimonial {
    background: transparent;
    }
    .heading_wrapper {
    background: transparent;
    }
    .page-content {
    background: transparent;
    }
    .fullwidth {
    background: transparent;
    }
    Put your color in place of grey. This will solve your issue.
     
  3. leadology

    leadology Member

    Joined:
    Dec 28, 2011
    Messages:
    100
    Likes Received:
    2
    Thank you Piyush:) Is there a way to control that color more precisely? Say a shade of grey, etc?
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    You can put your color code instead of "grey".
    For example:
    Code:
    .body_wrapper {
    background: #D3D3D3;
    }
    So, choose your color code and paste it inplace of "grey" .This will solve your issue.
     

Share This Page