TD ROWSPAN=2

I'm not quite clear on the question, so I'm assuming you have something like this:

<table border=1>
<tr>
<td>nav bar here</td>
<td>news page here</td>
</tr>

<tr>
<td>stuff you want over there -></td>
<td>Blank space you don't want</td>
</tr>
</table>

and what you want is this:

<table border=1>
<tr>
<td rowspan=2>nav bar here</td>
<td>news page here</td>
</tr>

<tr>
<td>yay</td>
</tr>
</table>


In which case, you can quote my post to see the exact code.

(btw, the reason for the big blank space above each table is that vBulletin doesn't ignore whitespace, so since I've used clear spacing and indenting on my table instead of trying to cram it all onto one line, vBulletin pops a bunch of whitespace above it.)