HOT to get LINKS to change colour when MOUSE goes OVER them

S

Stevan

I just noticed Panos' site and it looks great. I was wondering if my 2002
designed site can also show changes in hyperlink colours when the mouse goes
over them. If you know how this is done let me know please.... Stevan
 
D

DavidF

See my other post for more information, but Panos uses:

Here is the code snippet that Panos uses:

<style>
a{text-decoration:none;}
a:hover {color: ff8c00;}
</style>

Be careful before you decide to remove the hyperlink underline, as that is a
visual clue that even newbies recognize as being a hyperlink. If you remove
the underline, it looks cleaner, but navigation is not nearly as obvious.
You have to mouseover the link in order to confirm that it is a link...

DavidF
 
Top