You can, but you have to manually modify the stylesheet. I don't use drop-down effects, but the examples below show how to do it with a toggler. The principle is the same -- you'd just change toggler for dropDownHotspot or whatever that tag is.
- Code: Select all
toggler:link
{
color:#336699;
text-decoration: none;
}
toggler:visited
{
color:#336699;
text-decoration: none;
}
toggler:focus
{
color:#336699;
text-decoration: none;
}
toggler:hover
{
color:#880000;
text-decoration: none;
}
NOTE: The code above is shown with each link state separated, but they could also be combined like the following (just make sure the hover is the last one or the last one before "active" if you add that state):
- Code: Select all
toggler:link,
toggler:visited,
toggler:focus
{
color:#336699;
text-decoration: none;
}
toggler:hover
{
color:#880000;
text-decoration: none;
}