Sorry for the awkwardly phrased question. But I've made a website who's menu consists of an image map and when clicking a certain part of the menu a blue border appears around the coordinates. Is it possible for me to get rid of the blue border?
I can't upload an image cause I lack the reputation but if you'd like a reference image I could directly send you one.
edit: added code
<div id = "logo"><img src="./images/logo.png" usemap="#menu"></div>
<map name="menu">
<area shape ="rect" coords="0,131,331,0" href="index.html">
<area shape="rect" coords="5,156,60,132" href="film.html">
<area shape="rect" coords="60,156,118,132" href="photo.html">
<area shape="rect" coords="118,156,216,132" href="illustrations.html" >
<area shape="rect" coords="216,156,270,132" href="misc.html" >
<area shape="rect" coords="270,156,323,132" href="about.html" >
</map>
</div>