a {text-decoration: none;
}
</style>
When I don't have an underline on a link I really like it to re-act when you
move the cursor over it. The code seems to go something like this (most of
this is from an external .CSS file):
----------------------------snip----------------------
a:link
{
color: rgb(51,153,255);
text-decoration: none;
}
a:visited
{
color: rgb(51,102,204);
}
/* a hover must come after the "link/visited stuff to work */
a:hover
{
color: red; font-weight: bold;
}
/* an active must come after a hover to work */
a:active
{
color: rgb(255,153,0);
}
----------------------------snip------------------
I started using underlines again because my users were having trouble
finding the "menu".....