Woohoo fixed it!
Needed to replace:
Code:
<tr>
<td width="212" height="246" background="bg-top-left.gif">
<img src="santa-anim-left.gif" width="212" height="246" alt="">
</td>
<td width="276" height="246">
<img src="top-center.gif" width="276" height="246" alt="">
</td>
<td width="212" height="246" background="bg-top-right.gif">
<img src="santa-anim-right.gif" width="212" height="246" alt="">
</td>
</tr>
With
<tr>
<td width="212" height="246" background="bg-top-left.gif"><img src="santa-anim-left.gif" width="212" height="246" alt=""></td>
<td width="276" height="246"><img src="top-center.gif" width="276" height="246" alt=""></td>
<td width="212" height="246" background="bg-top-right.gif"><img src="santa-anim-right.gif" width="212" height="246" alt=""></td>
</tr>
removed the spaces inbetween the end of the <TD>, the <img> and the closing </td> in each of the 3 TD’s
Bookmarks