Hi, I recently set up the Zen cart shop and got a problem: there is a gap between logowrapper and categorytab. Could anyone help me how to remove it? Thanks.
My site: http://bioland-sci.com
Hi, I recently set up the Zen cart shop and got a problem: there is a gap between logowrapper and categorytab. Could anyone help me how to remove it? Thanks.
My site: http://bioland-sci.com
Please post some code so we can look at it, thanks.
Lesli in SW Florida ~ writer, teacher, and dodging hurricanes!
hi
this is ur css. find it in stylesheet.css & change some lines.
#navMain ul, #navSupp ul, #navCatTabs ul (line 247)
{
margin-top: 0pt; ----------should be 0px
margin-right: 0pt; ----------should be 0px
margin-bottom: 0pt; ----------should be 0px
margin-left: 0pt; ----------should be 0px
padding-top: 0.5em; ------sholud be 0px
padding-right: 0em;
padding-bottom: 0.5em; -----should be 0px
padding-left: 0em;
list-style-type: none;
text-align: center;
font-size: 1em;
line-height: 2em; ----should be 0px
}
Actually, points (pt), ems and pixels are all valid measurement units for these properties. Most of the suggested changes will have no effect as they are 0 anyway, but you probably don't want to remove the padding that is giving the nav lists breathing room above and below, and you certainly don't want to set the line-height to 0.
The standard fix for the posted problem is to change that <br class="clearBoth" /> to <div class="clearBoth"></div>, though just deleting it will probably work fine in most cases.
Thanks a lot. You guys are real Zenners!! Glenn resolved my problem beautifully. Comment out is a good try but not the ultimate solution.