how can I change the background color of all posts on my server?

The default for the theme I’m using is to have a white background for any post (the part with the text, not the background that forms the border around it) on my wordpress installation. Is there a way I can set the the background for all pages in one shot.

I’ve tried adding the following css:

Read More
p
{
    background: #91C3C1;
}

but it only changes the background color for the paragraphs.

What element should I be changing? (in this case I’m using the “Responsive” theme from CyberChimps)

Related posts

2 comments

  1. Set the background colour to the class “.post”, that’s the standard class for posts

    .post { background: #91C3C1 !important;
    
  2. The solution for me was to add the following

    .grid
    {
        background: #91C3C1;
    }
    
    .page
    {
        background: #91C3C1;
    }
    

    although, the border around the posts are still the default color; but I’ll start a new question for that.

Comments are closed.