• Resolved benwduffy

    (@benwduffy)


    I’m trying to change the background color of content and the sidebar (not the actual background, but just the white background of blog posts and such) to an off-white color, but I cannot find it in the CSS. Is there a way to add it to the CSS or an option that I’m missing?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The CSS to change the BG color of the post and the sidebar only is located in the Appearance > Editor (the default code shown is the style.css for that theme). Search for the following and replace the background color with the one you’d like (Note, just search for the class as I’ve not pasted the entire CSS snippet for each, just the BG color):

    Sidebar CSS:

    .well{
         background-color: #fff;
    }

    Post CSS:

    .post-inner-content{
         background-color: #fff;
    }

    Hope this helps!

    Thread Starter benwduffy

    (@benwduffy)

    Perfect, thank you!

    No problem, glad I could help ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change content background color from white?’ is closed to new replies.