Using css you can change the mouse cursor your visitors will have while viewing your site, instead of the standard hand. You can change the cursor for the entire page, or just for links.
STEP 1: Choose the cursor you like best from the following list. To view the cursor just hover over the link.
hand
crosshair
move
n-resize
s-resize
w-resize
e-resize
ne-resize
sw-resize
nw-resize
se-resize
row-resize
col-resize
all-scroll
text
wait
help
vertical-text
progress
not-allowed
no-drop
STEP 2: Once you've selected a cursor add it to your page css, anywhere after the < style> tag. The code should look something like this (yours may be organized slightly different, of course):
{ color: #COLOR;
text-decoration: none;
cursor: CURSOR; }
a:hover
{ color: #COLOR;
text-decoration: none;
cursor: CURSOR; }
STEP 3: The code or this is pretty similar to the previous. This time insert the following code somewhere after the body css. It should look something like this:
{ background: #COLOR;
font-family: FONT;
color: #COLOR ;
font-weight: normal;
font-size: SIZE;
cursor: CURSOR; }

