Sugar Baybe
Roman Holiday
~Bloody Winged Angel~
Sugar Baybe
I'm confused how to change the curser.
sweatdrop
Actually, I'm having problems with that too.
Do you want the cursor changed for the whole page or just a specific kind of cursor for the links?
Whole page.
Do you have a specific cursor url to use or do you want one of the standards?
You put the following into the
body tag:
cursor: crosshair;
'Crosshair' is just one option.
All the standard cursor options are as follows:
crosshair
pointer
move
e-resize
ne-resize
nw-resize
n-resize
se-resize
sw-resize
s-resize
w-resize
text
wait
help
Or you could put:
cursor: url('XXX'), default;
where XXX is the url of the cursor you want to use.
If you want to assign it to links, put it into the relevant link-changing tags instead of the body tag.
So in total, and without anything else...
body {cursor: url('XXX'), default;}
#site a:link, #site a:active, #site a:visited, #site a:hover {cursor: url('XXX'), default;}
[Note: you can set the normal link, active link, visited link and link-hover values separately, but the cursor only shows when you hover over the links anyway. Oh, and ideally the link cursor should be different to the background cursor.]
[Note2: If you're wondering why the 'default' bit is there, thats in case the linked cursor fails to load.]