Search code examples
cssmacosmouse-cursor

Creating mouse cursor/pointers in OS X Leopard


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.


Solution

  • According to the CSS 3 cursor specification:

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