vote up 3 vote down star
2

I have a number of heroshot images, that have a modal popup when clicked. I'm trying to get my cursor to turn into magnifying glass whenever it is moved over the image. The following CSS does not appear to work even though my magnify.cur is present in the right location.

a.heroshot img {
cursor:url(/img/magnify.cur), pointer;
}

Has anyone ever done anything similar? I don't mind a js solution if one exists...

Thanks.

EDIT: It works in Safari, but not firefox...

flag

4 Answers

vote up 4 vote down check

Your problem may be that cursor URLs don't work in Firefox for the Mac.

You can get the same effect on Firefox by using the -moz-zoom-in keyword.

cursor:url(/img/magnify.cur), -moz-zoom-in, auto;

This will show magnify.cur, the Mozilla-specific zoom cursor or a system default cursor. The first cursor on the list that the browser supports is used.

You can also see a list of cursor keywords supported by different browsers.

link|flag
vote up 0 vote down

What if you enclose the url string with apostrohes?

a.heroshot img {
cursor:url('/img/magnify.cur'), pointer;
}

See also http://www.w3schools.com/CSS/pr_class_cursor.asp

link|flag
The quote marks in a URL CSS property are optional [w3.org/TR/CSS21/syndata.html#uri] and w3schools is a terrible resource as it's full of misleading, nonstandard information and errors. – Gareth Dec 3 '08 at 12:25
Thanks for the clarification! – divideandconquer.se Dec 4 '08 at 19:52
vote up 1 vote down

This did the trick :)

a.heroshot img {
cursor:url(/img/layout/backgrounds/moz-zoom.gif), -moz-zoom-in;
}
link|flag
vote up 1 vote down

thanx that helped me lots, cheers guys

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.