• Hi there

    Am not entirely new to coding (have dabbled in html before) but can’t find a simple way to change the large white background area of the Twenty 10 theme. I’m not talking about the actual page background, but the area containing the header, nav, sidebar and posts.

    I’d like to change it to a dark grey, and the text to light grey and white.

    If someone could point me in the right direction I’d be extremely grateful!!

Viewing 1 replies (of 1 total)
  • First of all its best to create child theme and make changes in child theme

    In child theme style.css you can change the white background by changeling color of wrapper

    #wrapper {
    background:#FFFFFF none repeat scroll 0 0;
    margin-top:20px;
    padding:0 20px;

    }

    You can change font color by

    .entry-content, .entry-summary {
    clear:both;
    padding:12px 0 0;

    }

    add color:#hexcolor;

Viewing 1 replies (of 1 total)
  • The topic ‘Twenty 10 theme – changing "post area" background colour?’ is closed to new replies.