Style bg

In your ACP > Style > Theme > Edit (your current stylesheet)

FIND:
Code:
body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
	color: #4d4d4d;
	background: #DCDCCC url('styles/4poziomSEO/theme/images/back.gif') repeat-x top left;
	font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
	margin: 0px;
	padding: 0px;
}
REPLACE WITH:
Code:
body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
	color: #4d4d4d;
	background: #DCDCCC url('styles/4poziomSEO/theme/images/back.gif');
	font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
	margin: 0px;
	padding: 0px;
}
Now, this is so you have that solid color background image you're using, but you could even get away with changing
Code:
background: #DCDCCC url('styles/4poziomSEO/theme/images/back.gif');
To
Code:
background: #7E775D;
Anyway, good luck - and you can get more help on my phpDissection site for questions just like this.

-Rich
 
Back
Top Bottom