View Full Version : Change the hand cursor


LittleMikey
11-03-2005, 10:27 AM
Hi there!
On my website, i hav a custom cursor, a purple pointy thing. When i move over a link i want the hand cursor to be changed with another custom cursor. How can i do this?

Also, i have no experience with CSS, so if you could give me the exact code i need it would be great, thanks!

Arwen
11-03-2005, 11:01 AM
http://www.lissaexplains.com/css.shtml

LittleMikey
11-03-2005, 09:46 PM
sorry, but i dont understand how that works, could you please give me the code that i would need to permently change the hand cursor to a URL of a custom cursor?

PinoBabe13
11-03-2005, 10:28 PM
add this to your a:hover{ part in your css code

cursor: url(URLOFCURSOR);

Example

a:hover{cursor: url(http://yoursite.com/cursor.ani);}