Welcome to the forums Rich.
Thank you for using a descriptive title, however this should be in the "dynamic drive scripts" category and when you post code in the future can you please wrap the code in [c.ode][/cod.e] tags without the dots?
For a list of all of the posting guidelines and policies visit http://www.dynamicdrive.com/forums/s...ad.php?t=24866
now as for your question, what do you mean active? If you are talking about the link of the page you are currently visiting I am assuming your style
Code:
.glossymenu li.current a b, .glossymenu li a:hover b{
color: #fff;
background: url(/uploads/images/nav/menur_hover_right.gif) no-repeat right top; /*right tab image path*/
}
is what you want to intended to use for that. The declaration appears correct. You might want to check the url of the image you are using, and you also want to make sure that your "selector" initialization is correct... what I mean by that is
Code:
<element class="glossymenu">
<li class="current">
<a href="/url/path">
<b>SOME TEXT</b>
</a>
</li>
</element>
where element is attached to whatever you are calling glossymenu
if your page does not follow that declaration then your css selector will most likely incorrect leading to a possible glitch in rendering
Bookmarks