Side background color/image

Discussion in 'BizWay WordPress Theme' started by bigtflyer, Jan 28, 2014.

  1. bigtflyer

    bigtflyer New Member

    Joined:
    Jan 19, 2014
    Messages:
    29
    Likes Received:
    0
    Hello!

    Is there a way to isolate the two sides of my website's background and change that color/image and make it different then the background behind the center where all the text is?

    My site is damageawayusa.com/wordpress

    Tim
     
  2. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .sidebar {
    background: red;
    padding: 10px 10px;
    } 
    In place "red" you can put your color or color code.
    This is the possible solution.
     
  3. bigtflyer

    bigtflyer New Member

    Joined:
    Jan 19, 2014
    Messages:
    29
    Likes Received:
    0
    Hello,

    This solution only changed the background of the sidebar widgets on my pages, it did not change the actual sidebar background. Is there another code that could give me a different color background for the two sides of my page, while the main text in the middle has a seperate background?

    Thanks!

    Tim
     
  4. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .page-content-container {
    background: red;
    }
    .page-content {
    background: white;
    }
    .page-content {
    padding-left: 10px;
    padding-right: 10px;
    }
     
    In place "red" and "white" you can put your color or color code.
    This will solve your issue.
     

Share This Page