Joe Mamma wrote:
> I mde a 16x16 bmp, renamed it to mycursor.cur:
> I am testing this:
>
> <html>
No doctype declaration.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
> <head>
> </head>
<title></title> missing.
> <style type="text/css">
> body{
> cursor: url(mycursor.cur)
> }
You must provide a default fallback cursor in case your custom one does
not successfully loads. Eg
body{
cursor: url("mycursor.cur"), auto;
}
> </style>
>
> <body>
> cursor test
> </body>
> </html>
>
> it does not work, does it go in the <head>?
Yes. A simple markup validation test would have reported this error.
http://validator.w3.org/
do I have to upload the
> mycursor.cur for it to work? Right now it is in the same directory as the
> mycursor.htm file.
> Thanks for any help!
DU
--
The site said to use Internet Explorer 5 or better... so I switched to
Firefox 1.0.4