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
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.
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
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.