Does that actually work? you have two malformed DIVs with no conclusion? you also have misplaced and malformed <a>'s
Replace all of
HTML Code:
<table>
<tr>
<td align="left" >
<img height="96" src="http://www.tpctrikes.com/forum/images/IMG_1545.jpg" style="border-style: none" alt="" /></A>
<div style="clear:
</td><td align = "center">
<A HREF="http://www.tpctrikes.com"><center><img height="96" src="images/banner.jpg" style="border-style: none" alt="" /></center></A>
<div
</td><td align = "right">
<img height="96" src="http://www.tpctrikes.com/forum/images/TPC Air.jpg" style="border-style: none" alt="" /></A>
<!-- /logo -->
</td>
</tr>
</table>
with this
HTML Code:
<table align = "center">
<tr>
<td>
<a href="http://www.tpctrikes.com" border="0"><img height="96" src="images/IMG_1545.jpg" style="border-style: none" alt="" />
<img height="96" src="images/banner.jpg" style="border-style: none" alt="" />
<img height="96" src="images/TPC Air.jpg" style="border-style: none" alt="" /></a>
<!-- /logo -->
</td>
</tr>
</table>
but you'll have to add your css...etc for background, padding and whatever else to the containers. It's a good idea to include your alternative texts for the images before you add the code.