Hi,

I've had a site with this theme for some time now. I've changed the background color years ago by editing the "style.css" file. I was playing around with it today (wanted to perhaps change background to an image). However, now, the entire site layout isn't centered and the background color stays white. I'm not sure what happened as I didn't change anything except that Background: _____; line.

Just to clarify - I'm referring to the site background which is originally given as:

background: #EDEDED;

Here's the top part of the current style.css script:

/*
//author: slasant - www.slasant.ru
 */

* {padding: 0;margin: 0;}

img {border: 0;}

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height:1.125em;/*18px*/
	font-size:100%;/*set regular font size*/
	color: #333;
	letter-spacing:normal;
	background: #EDEDED;
	text-align: center;
	margin: 40px 0 20px 0;
	}


#page {
	background: white;
	text-align: left;
	margin: 0px auto;
	position: relative;
	/* The entire template's width is set in this class. */
	width: 970px;
	border:12px solid #FFFFFF;
	}

Thanks.