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
 

Ask a Question

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.

Ask a Question

Top