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:
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)
Set the background colour to the class “.post”, that’s the standard class for posts
The solution for me was to add the following
although, the border around the posts are still the default color; but I’ll start a new question for that.