Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change mouse icon?

Status
Not open for further replies.

serpento

Programmer
Joined
Jun 16, 2002
Messages
92
Location
GB
I want the mouse icon to change to a hand when it goes over an image that isn't a hyperlink.
 
Thanks, works great in IE but not in Netcape.
Anyone got a way that will work with Netscape 6?
 
Hi,
"cursor:pointer;
works in both IE ans NS
 
try this:

<style>
.mycursor {
cursor: pointer;
cursor: hand;
}
</style>

<img class=&quot;mycursor&quot;>

Hope this helps,
Erik <-- My sport: Boomerang throwing !!
!! Many Happy Returns !! -->
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top