PDA

View Full Version : mouseover links to pointer



carlito
December 16th, 2003, 03:37
I'm sorry guys but I need help refreshing my memory.

What is the HTML code for making links on a page on mouseover appear as a normal pointer, as opposed to the hand+finger?

thanks :)

kabatak
December 17th, 2003, 03:44
a:link {
cursor:default;
}
a:active {
cursor:default;
}
a:visited {
cursor:default;
}
a:hover {
cursor:default;
}

carlito
December 17th, 2003, 05:33
Ah, thanks.

I put it in between by <style> tags and it worked.

Very much obliged. :)