You have a space before your image in the HTML code
Your code will probably look like this
Code:
<a href="link_location"> <img src="image_location.gif"></a>
Where it should look like this
Code:
<a href="link_location"><img src="image_location.gif"></a>
--------------------
Adventures in Oz