Her

Home HTML and CSS Tutorials Cursors

Cursors

Author: Lindsay Coome Author's URL: www.killer-bunnies.com More by this author

To change the cursor on an individual link, copy the code below, and change LINK TEXT to the text you want to use for your link, and change YOUR URL to the url you are linking to.

<a href="YOUR URL" style="cursor:CURSOR TYPE">LINK TEXT</a>

Now replace CURSOR TYPE with one of the cursor types below:

crosshair
wait
help
text
default
n-resize
s-resize
w-resize
e-resize
ne-resize
nw-resize
se-resize
sw-resize
move
hand
Cursors

Or, you could change the cursor type in the link section of your CSS:

A:hover{COLOR: #FFFFFF; TEXT-DECORATION: none; cursor:CURSOR TYPE;}