Then you don't really know how to add css styles. They cascade - css is cascading style sheets.
So, if you want one style to apply to one thing and not to another, you need to select it and not the other item. For example, if you've followed the markup example on the demo page, all of your links that you want to influence are inside a division with the id of 'scriptmenu' so, you can select them like so:
Code:
<style type="text/css">
#scriptmenu a:hover {
color:white;
}
</style>
If that doesn't work for you, then there is something else cascading from your other style(s) that is overriding it. If you cannot figure out what that is, we would need a link to your page to help you further.
And, don't feel too bad. Links are one of the hardest things to style in a specific manner, especially when more than one type of link is present and even more so in IE. There is also a slight chance that the script may be interfering with our efforts but, a quick check of the demo script did not seem to indicate that this would be a factor.
Bookmarks