Hi...
The hover styles are set with this piece of CSS code:
Code:
.chromestyle ul li a:hover{
background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
}
To customize it per element you can use a CSS class selector and define the individual backgrounds in the CSS.
You should have something like this currently:
Code:
<div class="chromestyle" id="chromemenu">
<ul>
<li><a href="http://www.dynamicdrive.com">Home</a></li>
<li><a href="#" rel="dropmenu1">Resources</a></li>
<li><a href="#" rel="dropmenu2">News</a></li>
</ul>
</div>
If you add some classes (highlighted) it will look like this:
Code:
<div class="chromestyle" id="chromemenu">
<ul>
<li><a class="home" href="http://www.dynamicdrive.com">Home</a></li>
<li><a class="resources" href="#" rel="dropmenu1">Resources</a></li>
<li><a class="news" href="#" rel="dropmenu2">News</a></li>
</ul>
</div>
Now, in the CSS you can set styles specific to those elements like so:
Code:
.chromestyle ul li a.resources:hover{
background: url(chromebg-over.gif) center center repeat-x;
You would, of course, repeat for the other class names (news, home, etc...).
Hope that helps
Bookmarks