View Single Post
  #9  
Old 04-02-2009, 10:56 PM
 
retrtrtrytrutru retrtrtrytrutru is offline
 

Senior Member
  
Join Date: Aug 2007
Posts: 101
 

Default Re: Background colour

Hi valks1, I have looked at your site, in the source code I can see that you're using the following stylesheet:

Code:
<link rel="stylesheet" href="/skin1/skin1_c.css" />

Within this stylesheet the following statement is made:

Code:
HTML,BODY { MARGIN: 0px; PADDING: 0px; BACKGROUND-COLOR: #FFFFFF; }

This means that your background is set to white... Change the color code (#FFFFFF) and your background should change. Note that changing this code will most likely change your entire background, if you want the center table to remain white or a different color look up:

Code:
TABLE.Container { }

In your stylesheet (/skin1/skin1_c.css) and add:

Code:
TABLE.Container { BACKGROUND-COLOR: red; }

You can of course change red to any colour you want..
__________________
www.qualitylamps.eu
X-Cart Gold 4.1.8, PHP 5.2.6, MySQL 5.0.51a, Apache 2.2.9

www.vervangjelamp.nl
X-Cart Gold 4.2.0, PHP 5.2.6, MySQL 5.0.37-standard, Apache/2

Sorry for the weird user name, I registered it by mistake
Reply With Quote