Miette
07-01-2003, 03:48 PM
I got my CSS to make my cursor a cross (on hover links). It works normally on the page, except for the links on pics. I mean, I have two ways of entering my site: a normal text link that says 'enter' that works (the cursor does become a cross) and then another one in the picture that I made with CuteMap, and this last one doesn't change to a cross, it's stays normal, a hand.
Does anybody know what I have to do to get this one change too?
Thanks ;)
kittycat
07-01-2003, 04:05 PM
If you add
img { cursor: crosshair; }
to your CSS it will work, but then it makes the cursor like that over all images.
You could try adding style="cursor: crosshair;" to the image map code (the <area shape.... > part), although I'm not sure if it will work that way.
Miette
07-01-2003, 10:33 PM
Thanks, the first one worked as you said. :D
I'll use it, although I'm still trying to find something that gets the crosshair only in hover links.
If anyone has any idea, it'll be really appreciated ;)
sisqoluv
07-02-2003, 12:32 AM
Originally posted by Miette
Thanks, the first one worked as you said. :D
I'll use it, although I'm still trying to find something that gets the crosshair only in hover links.
If anyone has any idea, it'll be really appreciated ;)
<style>
<!--
A:link{COLOR:#000000; TEXT-DECORATION: none; font-weight: bold}
A:visited{COLOR:#000000; TEXT-DECORATION: none; font-weight: bold}
A:active{COLOR:#000000; TEXT-DECORATION: none; font-weight: bold}
A:hover{color:#6699cc; text-decoration:none; font-weight: bold; cursor: crosshair}
-->
</style>