View Full Version : Hotspot cursors


frickangel
09-19-2004, 12:45 PM
Hey all.

Need a little bit of help, I'm building a site which I'm using hotspots. Now I'm also using a specific cursor when I hover over a link. That works perfectly fine EXCEPT on the hotspots.

I know it involves CSS to overide the regular finger-pointer over the hotspot link, so does anyone know what it is?

Thanks, I've included my code to show as well:

<html>
<head>
<title>your title</title>
<style type="text/css">

A:hover{text-decoration: underline overline; font-weight: bold; cursor: help; color:#A49146;}
A {text-decoration: none;}

body {
scrollbar-face-color: #E4EDE8;
scrollbar-shadow-color: white;
scrollbar-highlight-color:;
scrollbar-3dlight-color: ;
scrollbar-darkshadow-color:grey;
scrollbar-track-color: #E4EDE8;
scrollbar-arrow-color: white;
}
</style>

</head>

<body>
<a href="http://www.test.com">test</a>
</body>

</html>

stargrl329
09-19-2004, 02:10 PM
Try this in your stylesheet:
area{
cursor: help;
}

kittycat
09-19-2004, 03:21 PM
If that ^^ doesn't work then there's no way to do it, been asked loads of times before and no one's found a way.