change Page color?

Discussion in 'Infoway WordPress Theme' started by emrys, Sep 14, 2013.

  1. emrys

    emrys New Member

    Joined:
    Sep 7, 2013
    Messages:
    5
    Likes Received:
    0
    Is there a way to make the actual pages (other than the Home page) another color besides white? Meaning, not just changing the color of the area around the page, but the area where the text goes (i.e. under the text)?
     
  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:
    .page-content {
    background: red;
    }
    .body_wrapper {
    background: red;
    }
    .header {
    background: red;
    }
    .heading_wrapper {
    background: red;
    }
    .fullwidth {
    background: red;
    }
    In place of "red" you can put your color or color code.
    This will solve your issue.
     

Share This Page