If someone could help me, it would be wonderful, as I am rediculously stumped. I have a .bmp image that I created through good 'ol paint. What I am trying to do is create an image map using the image created from paint to allow a user to click on certain coordinates of the image. However, after accessing my page using the code below, the corresponding area that coincides with the coordinates is not clickable:
<img src="grid2.bmp" width="527" height="462" alt="Pixels" usemap=#pixelgrid" />
<map id ="pixelgrid" name="pixelgrid">
<area shape ="rect" coords ="0,0,10,10"
href ="myspace.com" target ="_blank"
alt="Add" />
<area shape ="circle" coords ="90,58,3"
href ="mercur.htm" target ="_blank"
alt="Mercury" />
<area shape ="circle" coords ="124,58,8"
href ="venus.htm" target ="_blank"
alt="Venus" />
</map>
Any help as to why this doesn't work would be greatly appreciated. Also, when I access my page, my image has a blue border around it. Any ideas why or how to get rid of it?
Thanks in advance!
Patrick
<img src="grid2.bmp" width="527" height="462" alt="Pixels" usemap=#pixelgrid" />
<map id ="pixelgrid" name="pixelgrid">
<area shape ="rect" coords ="0,0,10,10"
href ="myspace.com" target ="_blank"
alt="Add" />
<area shape ="circle" coords ="90,58,3"
href ="mercur.htm" target ="_blank"
alt="Mercury" />
<area shape ="circle" coords ="124,58,8"
href ="venus.htm" target ="_blank"
alt="Venus" />
</map>
Any help as to why this doesn't work would be greatly appreciated. Also, when I access my page, my image has a blue border around it. Any ideas why or how to get rid of it?
Thanks in advance!
Patrick