Click to See Complete Forum and Search --> : Cursor question


SniperX
06-30-2004, 10:36 AM
hi there,

I would like to change the cursor of a page to a cursor im
storing on my server...

i know i can use
body {cursor:normal;}

but how would i use mine?

as
body {cursor:dollarsign.cur;}
doesnt seem to work.

Any ideas?

David Harrison
06-30-2004, 10:50 AM
You have to do this:cursor:url(dollarsign.cur), default;Here (http://www.w3schools.com/css/pr_class_cursor.asp) is some more info about the cursor rules.

It's cursor:dafault; not cursor:normal; by the way.