At the bottom of my site, http://www.decoupagedelights.com/zencart/
there is a section that just says 'Home' (above the copyright). How do I remove this from my site? (I have the newest Zencart installed, and using the 'Classic' template). Thanks.
At the bottom of my site, http://www.decoupagedelights.com/zencart/
there is a section that just says 'Home' (above the copyright). How do I remove this from my site? (I have the newest Zencart installed, and using the 'Classic' template). Thanks.
You can add this to the stylesheet:
#navSuppWrapper {display:none;}
or find the navSuppWrapper section in tpl_footer.php and comment it out.
Hi, thanks for that, I tried it but I didn't do it right, now the top part of my site (Home, Login & Search) has got a white background instead of the gold pattern like the rest of the page. If possible, could you help me get it back to what it looks like in the attached picture, instead of what it looks like now? Thanks.
You have a lot of background colors in the header that are white in CSS. We can't test which one because your using and image background. You can look in the header div and comment out the white background. or force transparent background.
Hi, how would I force in a transparent background to that part? Thanks.
It looks like you've removed this from the stylesheet:
#navMainWrapper, #navSuppWrapper, #navCatTabsWrapper {
margin: 0em;
background-color: #abbbd3;
background-image: url(../images/tile_back.gif);
padding: 0.5em 0.2em;
font-weight: bold;
color: #ffffff;
height: 1%;
}
That's just the styling, so removing that statement won't remove any page element. You'll have to put that back, make the changes you made before (background image, etc.) and add the statement in my first post to the end of the stylesheet.