Click to See Complete Forum and Search --> : removing border around image map picture


redsand198
06-11-2003, 09:29 AM
how do i remove the blue border that is surrounding all of my image map pictures?

TIA

DaveSW
06-11-2003, 09:39 AM
try style="border:none;" inside the tag - e.g.

<div style...> image map </div>

dave

redsand198
06-11-2003, 09:41 AM
like this?



<body>

<map name="intro">

<area shape="rect" href="menu.html" style="border:none;" coords="220, 231 510, 261">

</map>

<img usemap="#intro" src="intro.jpg">

</body>

rbudj
06-11-2003, 09:42 AM
<img src="images/mymap.jpg" border="0" >

redsand198
06-11-2003, 09:53 AM
thank you! :D