To modify the dafault cursor in your theme, you have to put this code in CSS:
html {
cursor: url("cursor.cur"), default;
}
You just need to change cursor.cur for your own cursor link. Or if you want to use other default cursors (not the arrow) you will put it this way:
html {
cursor: cursor type;
}
You can change the cursor type for
crosshair
e-resize
hand
help
move
n-resize
ne-resize
nw-resize
pointer
s-resize
se-resize
sw-resize
text
w-resize
wait
You still can change the cursor in only one part of your theme, just need to add the “cursor: cursor type” in the appropriate div instead of html.