Hi im using the template default and cant figure out how to change the color OR remove the bar on the right side. It stretches out from the logo.gif but is not a pic so it must be in css or something? Any help to remove would be appreciated. Thanks
Hi im using the template default and cant figure out how to change the color OR remove the bar on the right side. It stretches out from the logo.gif but is not a pic so it must be in css or something? Any help to remove would be appreciated. Thanks
Make sure you are using Custom override folders. There are FAQs available...
A link to your site would help...
Get yourself Firefox then install the Firebug extension. Which will help troubleshooting CSS problems.
~Steve~
its actually the Classic Template ..
The page is showing incorrectly in IE... Firefox is showing the page better. The blue is actually the background.
You should work with your own override folder. So that any "errors" can be easily corrected.
You are using 2 stylesheets which will be clashing...
stylesheet_new.css
stylesheet_original.css
zencart will load both of those files within the css folder...
~Steve~
I believe the following line is messing things up for you in IE
#navMain ul li, #navSupp ul li, #navCatTabs ul li {
display:inline;
white-space:nowrap;
}
try;
#navMain ul li, #navSupp ul li, #navCatTabs ul li {
display:inline;
white-space:normal;
}
~Steve~