Change the background

Discussion in 'Infoway WordPress Theme' started by pdonov, May 20, 2013.

  1. pdonov

    pdonov New Member

    Joined:
    May 7, 2013
    Messages:
    16
    Likes Received:
    0
    Is there any way to change the background to a different color? The background where there is text
    Thanks
     
  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: yellow;
    }
    .header {
    background: transparent;
    }
    .slider_wrapper {
    background: transparent;
    }
    .wrapper_menu {
    background: transparent;
    }
    .menu_container {
    background: transparent;
    }
    #featured {
    background: transparent;
    }
    .contentbox {
    background: transparent;
    }
    .feturebox {
    background: transparent;
    }
    .testimonial {
    background: transparent;
    }
    .heading_wrapper {
    background: transparent;
    }
    .heading_container {
    background: transparent;
    }
    .page-heading {
    background: transparent;
    }
    .page-content {
    background: transparent;
    }
    .fullwidth {
    background: transparent;
    }
    Inplace of 'yellow' you can put your color or color code.
    This will solve your issue.
     

Share This Page