View Full Version : Cursor change


elenifaerie
01-26-2003, 06:38 PM
How do you change the cursor if you put it over a text link??

Dude128
01-26-2003, 06:43 PM
http://www.lissaexplains.com/css.shtml

elenifaerie
01-26-2003, 06:45 PM
I mean when you put your mouse over a TEXT LINK not a image!

Dude128
01-26-2003, 06:56 PM
then add a style attribute to the individual text links, and not the image ones. or make a seperate class for text links. try a search on the forum.

KielyGurl
01-28-2003, 11:59 PM
<style type="text/css">
<!--

A:link
{ text-decoration: value [underline, overline, underline overline, line-through, blink, none]; color:#000000 }
A:visited
{ text-decoration: value [underline, overline, underline overline, line-through, blink, none]; color:#000000 }
A:active
{ text-decoration: value [underline, overline, underline overline, line-through, blink, none]; color:#000000 }
A:hover
{ text-decoration: value [underline, overline, underline overline, line-through, blink, none]; color:#000000;
</style>

replace value with watever you want the link to do...