lakshmen
lakshmen

Reputation: 29064

How to change the background color in Wordpress

I would like to change the background color for the text area. I am using Minamaze theme.

Tried changing the background of textarea, but it didn't help.. Tried clearing the cache as well

Need some guidance..

The website is quantgreeks.com, I want to change the white background behind the text.

Upvotes: 0

Views: 2304

Answers (1)

Petey
Petey

Reputation: 110

In your style sheet find:

#content {
  clear:both;
  margin:0;
  padding:20px 10px;
}

and add a background color to it. For example:

#content {
  background-color:#000000;
  clear:both;
  margin:0;
  padding:20px 10px;
}

Upvotes: 2

Related Questions