Get rid of the red table:
Code:
<td class="headers">
Ley Street Centre</td>
<td class="headers" align="right"> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="416">
<tbody>
<tr>
<td>
<img src="images/spacer.gif" height="1" width="1">
</td>
</tr>
</tbody>
</table>
<table align="center" bgcolor="#f0f0f0" border="0" cellpadding="0" cellspacing="0" width="416">
<tbody>
<tr>
<td valign="top" width="416">
<table border=
Add style to this table (inline as shown or in your stylesheet):
Code:
<table style="border-bottom:1px solid black;" align="center" bgcolor="#003366" border="0" cellpadding="1" cellspacing="2" width="416" background="./images/gradient.gif">
<tbody>
<tr>
<td class="headers">
Ley Street Centre</td>
<td class="headers" align="right"> </td>
</tr>
</tbody>
</table>
Not required - However, you can combine the table's attributes into its style, except for its cellspacing, which could be applied as a margin style to its cell):
Code:
<table style="border-bottom:1px solid black;background:url('./images/gradient.gif') #003366;width:416px;margin:0 auto;" cellspacing="2">
Bookmarks