Changing color of hyperlinks on hover

S

Steve Johnson

I'd like the hyperlinks on my pages to change color when the cursor hovers
over them (they're not bitmaps, they're just plain text)

Could someone please point me toward a tutorial or any info on how to do
that? I'd really appreciate it...

Steve J
 
P

Pariah

Just to give an example of what "news" is talking about:

<style>
A:link {
COLOR: #00CC99; TEXT-DECORATION: none
}
A:active {
COLOR: #00CC99; TEXT-DECORATION: none
}
A:visited {
COLOR: #00CC99; TEXT-DECORATION: none
}
A:hover {
COLOR:#FFFFFF; TEXT-DECORATION: underline
} (This one will make the colour of the link change colour when you hover
the mouse over it, text decoration isn't needed if you don't want it)
</style>

Hope this helps

Pariah
 
Top