views:

602

answers:

1

I have a small gif that I can use as a mouse pointer with a browser by doing something like:

.myclass { cursor: url("mycursor.gif"); }

This works OK except that the hotspot is in the wrong place. Anyone know of any OSX Leopard software I can use to set the hotspot? I might be able to do it with Rezilla but I don't know what Safari etc are expecting.

Thanks.

+1  A: 

According to the CSS 3 cursor specification:

.myclass { cursor: url("mycursor.gif") 10 20 }
Brian Campbell
Thanks! That exactly solves my problem.
clothears