
Originally Posted by
Soots
Is it possible?
Yes[1], but only via a proper style sheet, and then only on a elements[2].
Code:
<head>
<!-- ... -->
<style type="text/css">
selector:hover {
cursor: url(...), fallback;
}
</style>
</head>
What you'll use in place of selector and fallback will vary based on what you're trying to style, and where. The fallback value will probably be default but I couldn't guess at selector without seeing at least a sample of your mark-up in context.
Mike
[1] At least in IE. I can't recall any other user agents supporting custom cursors.
[2] You can apply the :hover pseudo-class to any element, but IE only supports it with a elements, unlike most user agents.
Bookmarks