Zencart supports multiple stylesheets, which means (basically) that your pages will display according to the COLLECTIVE declarations of all stylesheets.
Right now, you have 2 main stylesheets affecting the display of page elements. Your zenshop is loading these in this order (as shown in your Page Source):
HTML Code:
<link rel="stylesheet" type="text/css" href="includes/templates/classic/css/stylesheet_new.css" />
<link rel="stylesheet" type="text/css" href="includes/templates/classic/css/stylesheet_original.css" />
So, the page is first reading stylesheet_new.css
... and then it reads stylesheet_original.css
Any style declaration in stylesheet_new.css is going to be over-ridden by an identical declaration that ALSO appears in stylesheet_original.css
You will now have to COMBINE the 2 stylesheets into 1, and in the process, you must remove any countermanding declarations (deciding of course, which declaration you want to retain.)
For example:
The following declaration appears in stylesheet_original.css
Code:
BODY {
background-color: #000000;
background-image: url(../images/boxx.jpg);
color: #000000;
margin: 0px;
margin-bottom: 10px;
padding: 0px;
font: 11px Verdana, Arial, sans-serif;
}
... and the following in stylesheet_new.css
Code:
body {
color:#000000;
font-family:verdana,arial,helvetica,sans-serif;
margin:0;
}
These must be combined into one declaration, and errors/conflicts edited out or corrected.