Reputation: 3
I'm using the Wordpress "Twenty Fifteen" theme for a website.
I'd like to change the background color left of the sidebar, but I don't find how. I can change the background of the body, page, sidebar, etc., but not of the area left of the sidebar (which has the same colour).
Upvotes: 0
Views: 562
Reputation: 4250
Step 1- Go to the admin of your theme. Appearance > Customize as shown in screeshot.
Step 2- GO to Additional Css tab-
Step 3-Add css in this tab as below. Give your own colors as you want.
body:before{ background-color: yellow;}/* Css for left part only*/
.sidebar{background-color: blue;}/* Css for the sidebar*/
Note: You have to specify both colors for both left part only and sidebar here only then only it will work properly.
Upvotes: 1