HI everyone. When I linked my Images in dreamweaver, this BLUE BORDER APPEARS and Changes the size of my Image How will I remove this BLUE BORDER??? Please HELP ME:whiteflag:
I guess you html looks something like this: <a href="yourlink.html"><img src="yourimage.gif" /></a> Change to this: <a href="yourlink.html"><img src="yourimage.gif" border="0" /></a> Adding border="0" get rid of the blue border.
^^ That will work, but if there are lots of images that you want to get get rid of the border on, then use, <style type="text/css"> <!-- img { border: none; } --> </style> Code (markup):
The easiest way is to do this on dreamweaver, click on the image, and on the bottom of dreamweaver click PROPERTIES, in there, there should be something saying BORDER, all you gotta do is put a 0 inside the box and click ENTER. There you have it.