PDA

View Full Version : html question


Chrysaor
08-22-2007, 09:16 PM
Anyone know how to get rid of the blue link box around an image map?

Pretty basic stuff, but I can't seem to dig up an ansver.

Angel_Mapper
08-22-2007, 09:28 PM
<style type="text/css">
img {
border: none;
}
</style>Put that in the body. :) I use it on my website in a few places:
http://www.angelmapper.com/infosubrosa.htm

-=JUDGE=-
08-23-2007, 12:39 AM
Well for image maps, you can simply put border="0" in with the other image attributes.

<img src="whatever.jpg" width="number" height="number" border="0" />

Chrysaor
08-23-2007, 05:18 AM
heh, guess I should've thought of that. :D

I'll probably use the css style so that I can just put it in my page template and forget about it, since I don't have borders anywhere.

Thanks :D