Posts: 198
Location: High Wycombe, Buckinghamshire, London
|
Hey,
From looking at your source i think i can see your problem. For you logo table, replace:
Code:
<table width="87%" border="0">
<tr align="center">
<td width="37%"><div align="right"><img src="images/00000001_r1_c1.gif" width="356" height="163"></div></td>
<td width="63%"><div align="left"><img src="images/00000001_r1_c5.gif" width="426" height="163"></div></td>
</tr>
</table>
replace with:
Code:
<table width="87%" border="0" cellpadding="0" cellspacing="0">
<tr align="center">
<td width="37%"><div align="right"><img src="images/00000001_r1_c1.gif" width="356" height="163"></div></td>
<td width="63%"><div align="left"><img src="images/00000001_r1_c5.gif" width="426" height="163"></div></td>
</tr>
</table>
That should sort it out
Regards,
Sean
__________________
[ Insert witty, yet highly intelligent signature here ]
|