It is centered vertically, that is what you want right?
The other problem is that all table rows have one cell but now the banner/content row has 2 cells. ie
Code:
...
<tr><td>blah blah</td></tr>
<tr><td>BANNER</td><td>CONTENT</td></tr>
<tr><td>blah blah</td></tr>
...
solution 1: give all rows the same amount of cells
Code:
...
<tr><td> </td><td>blah blah</td></tr>
<tr><td>BANNER</td><td>CONTENT</td></tr>
<tr><td>blah blah</td></tr>
<tr><td> </td><td>blah blah</td></tr>
...
solution 2: set colspan for single cell rows
Code:
...
<tr><td colspan="2">blah blah</td></tr>
<tr><td>BANNER</td><td>CONTENT</td></tr>
<tr><td colspan="2">blah blah</td></tr>
...
Obviously, the style/valign still applies to the banner cell.
Hope this helps
