Great theme!

I'd like to change the gray background color of the left sidebar: but I can't find it anywhere in the CSS.

When I add a

#sidebar-left {background-color:#ffffff;}

to style.css, there's still a block of gray running from the base of the sidebar to the bottom of the page.

Can you give me a shove in the right direction?

Thanks! Robert

Comments

jbrauer’s picture

Status: Active » Fixed

What appears as the left sidebar background is set here:

div#content-outer-wrap {
  background: url(./assets/images/content-outer-wrap.png) #FFF repeat-y left top;
}

(Starting on line 224 of style.css)

Setting a background-color on the #sidebar-left ID will only change the background on the portion where the sidebar actually is. So you'd need to change the image or come up with a different way of handling the background for the sidebar independently of the content-outer-wrap div.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.