View Full Version : Keeping an Arrow when Hovering over Links


stinka
05-23-2003, 02:53 AM
Does anyone know what to add in the css code for when I hover over a link and I want the pointer to stay as an arrow. In the code right now, I have "<STYLE><!--{cursor: default;}"

What do I change, so that even when I hover over it, it stays as an arrow and not change to the "hand?" Thanks.
-stinkaa

Alcy
05-23-2003, 04:24 AM
<style type="text/css">
a:hover
{
cursor:default;
}
</style>

stinka
05-24-2003, 02:38 AM
yeah, that's it. thanks.