Here is a CSS image map setup that I've been using:
HTML:
<div style="display:block; width:791px; height:1022px; background:url(images/image.jpg); position:relative; margin:2px auto 2px auto;">
<div><a class="imagemaplink" style="left:112px; top:564px; background:transparent; display:block; width:336px; height:0; padding-top:29px; overflow:hidden; position:absolute;" title="Image1" href="#"></a></div>
………
CSS:
a.imagemaplink:hover{background:transparent; border:1px solid black; color:black;}
Although this method works well, I am interested in adding a pointer image on the left side of the link when hovered. This pointer image can also be made into a link, but it should not become part of the border when the user hovers over it. For example:
If you have any suggestions on how to achieve this efficiently, I would greatly appreciate it. Thank you.