
Originally Posted by
barleywine
I really don't mean to be a pest, but my client is asking when this is going to be resolved, and I'm still at a loss -

can anyone help me?? Pleeeeease?
The rest of the site is nearly done and we're supposed to launch next week...
Thanks!
Ok, first of all, you did this:
<li class="catalog" id="catalog">
Instead of this:
<li class="submenu" id="catalog">
for the "catalog", and the "contact" sections. That'll need to be fixed first off.
Change HEADER_TITLE_CATEGORIES back to "Shop" in your language file, that's not the way to go.
then in the css, you need to replace your background image section with this:
Code:
#categories a, #categories a:hover {
background-image: url(../images/navbar_shop.gif);
background-repeat: no-repeat;
}
#cart a, #cart a:hover{
background-image: url(../images/navbar_cart.gif);
background-repeat: no-repeat;
}
#catalog a, #catalog a:hover {
background-image: url(../images/navbar_home.gif);
background-repeat: no-repeat;
}
#information a, #information a:hover {
background-image: url(../images/navbar_info.gif);
background-repeat: no-repeat;
}
#contact a, #contact a:hover {
background-image: url(../images/navbar_contact.gif);
background-repeat: no-repeat;
}
#account a, #account a:hover {
background-image: url(../images/navbar_account.gif);
background-repeat: no-repeat;
}
Add text-indent:-9000px; to div#dropMenu li a to hide the main level text.
Then add:
Code:
div#dropMenu ul li ul li a {text-indent:0!important;}
to un-hide the submenu's text.
Change this:
Code:
div#dropMenu ul.level1 ul.level2 li {background-image:none;} /*added per jadetrue*/
to this:
Code:
div#dropMenu ul.level1 ul.level2 li a {background-image:none;} /*added per jadetrue*/
Add this to your css to keep the sidebox from showing the background image for the shop section, as it also uses #categories
Code:
#navColumnTwo #categories a {background:none;}
Err, I might have forgotten something, but that should get you closer.