PDA

View Full Version : How To Change Mouse Pointer When Entering Site


mdsmeck
March 30th, 2006, 07:19 AM
Was curious as to how to change the normal mouse pointer to another image when an individual enters my site...

I have seen the trailing pointers, but was wondering if the pointer could be changed to like a beer mug or something...

Thanks In Advance...


Mike...

rockboy
March 30th, 2006, 08:25 AM
You can specify a cursor image using css. The image file must be a .cur or .ani file. Put this in the css body section. If you want the special cursor image to appear only in certain places you can use inline css.
body {
cursor: url(imagename.cur); }
This works with IE but might not work with other browsers.