Ken
Ken

Reputation: 3

Wordpress theme "Twenty Fifteen" background

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

Answers (1)

Sahil Dhir
Sahil Dhir

Reputation: 4250

Step 1- Go to the admin of your theme. Appearance > Customize as shown in screeshot.enter image description here

Step 2- GO to Additional Css tab-

enter image description here

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*/

enter image description here

Note: You have to specify both colors for both left part only and sidebar here only then only it will work properly.

Upvotes: 1

Related Questions