Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hovering over image map does not change cursor to hand in IE

I have an image with a map of two clickable areas. These work as expected on firefox and chrome. In IE, the cursor doesn't change to the 'hand'. I am able to click and navigate fine. So most things seem alright. The only thing that doesn't happen is the change of cursor into the 'hand'. Any idea what I am missing?

  <td><img id="shop-icon-image"  src="img3/shop-icon.png" usemap="#shopiconmap" />
        <map name="shopiconmap">
            <area shape="rect" coords="3,75,43,88" href="http://domain/page" /> 
            <area shape="rect" coords="44,75,82,88" href="http://domain/page" /> 
        </map>
    </td>
like image 895
user1198407 Avatar asked Jan 27 '26 02:01

user1198407


1 Answers

Add this to CSS:

area
{
 cursor:pointer; 
}
like image 141
Max Novich Avatar answered Jan 29 '26 14:01

Max Novich



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!