The comments are definitely unnecessary, and in particular, the closing one
you have will cause an error. If you want them, they should be <!-- and -->
only.
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".....
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.