Click to See Complete Forum and Search --> : Curser question
Raziel_Reborn
08-21-2003, 02:42 PM
Does any one know of some form of script etc. that i could add to the pages of my site that will stop the curser from changing to the hand symbol when ever it is hovered over i link?
if possible it should be fairly simple and compatable with most internet browsers.
Cheers,
Raziel.
AdamGundry
08-21-2003, 02:45 PM
You can use the CSS cursor selector, I believe:
<style type="text/css">
a {
cursor: default;
}
</style>
Check out http://www.w3.org/TR/CSS2/ui.html#propdef-cursor for more cursor type options.
Adam
Charles
08-21-2003, 02:49 PM
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Example</title>
<style type="text/css">
<!--
a {cursor:default}
-->
</style>
<div><a href="http://www.w3.org/TR/REC-CSS2/ui.html#propdef-cursor">Cursor</a></div>
Raziel_Reborn
08-21-2003, 03:02 PM
WOW!
Cheers, i didn't expect anything that fast, or that simple.
Raziel.