Your page is in violation of Dynamic Drive's
usage terms, which, among other things, state that the script credit must appear in the source code of the
page(s) using the script. Please reinstate the notice first.
That said, your first question, if I understand it, is easy. Add the three highlighted pieces of code to your style section for the selector indicated:
Code:
.product_menu .headerbar:hover, .selected {text-decoration: none;color: #ec9000!important;display: block;
background: url('/images/arrow_collections_on.gif') no-repeat 65px 4px!important; /*last 2 values are the x and y coordinates of bullet image*/}
The other question I believe has to do with the positioning of the background image. You could make an individual style for each headerbar. The WOMEN one looks about right, so you could leave that alone, add an id of 'men' or whatever to the MEN one, ex:
Code:
<h3 class="headerbar" id="men">Men</h3>
and set its background-position style property differently. Make sure to make a :hover and .select for it too, using the !important keyword as shown, place this style after the one used by both headerbar elements, something like:
Code:
#men, .selected#men, .product_menu .headerbar#men:hover {
background-position: 40px 4px!important;
}
Bookmarks