How To Change A WordPress Background Color Using Stylesheets
Categorized under: Web-Design-Articles
You can easily change a WordPress background color by clicking Appearance in WordPress, then Editor and then clicking “Stylesheets” or “styles.css” as is shown in the image below. I’ve highlighted the area that changes the background area.

You can use a medley of different styles.
For instance if you replace the background with the following code you’ll get a big background image:
background:url(http://a1.twimg.com/profile_background_images/101504088/weloveboobs.jpg) left top no-repeat;
If you just use a color name or hexadecimal color, then the background would be one solid color. Here’s some examples:
background: red;
or
background:#ff9900
— Zeus ::)
Jul 02, 2010

