To fix this, you need to get rid of the border. You can do this with deprecated HTML or with CSS. I recommend CSS. Just add the border style to your images:
<img src="image.gif" alt="logo" style="border: none;" />
To turn off the border on all your images, put a line in your style sheet:
img { border: none; }
You can also use the border attribute on the image tag, but this has been deprecated in XHTML and HTML 4.01.
<img src="image.gif" alt="logo" border="0">
Help with Images