Forum Moderators: open
<table border="1" width="98%">
<tr>
<td rowspan="2">logo.gif</td>
<td>top cell I /blank space</td>
<td>top cell II /some text</td>
</tr>
<tr>
<td>bottom cell I /nav menu</td>
<td>bottom cell II / a few images</td>
</tr>
</table>
thanks in advance,
<table border="1" width="98%">
<tr>
<td rowspan="2">logo.gif</td>
<td colspan="2">top cell I /blank space</td>
<td>top cell II /some text</td>
</tr>
<tr>
<td width="200">bottom cell I /nav menu</td>
<td colspan="2">bottom cell II / a few images</td>
</tr>
</table>
<added>
Explanation:
The table is divided in three columns. The first column has a fixed width. The boundary between the second and third column is flexible depening of the size of the text in your top cell II. This won't affect the contents of your second row, because bottom cell II spans across both columns.
Second method:
<table border="1" width="98%">
<tr>
<td rowspan="2">logo.gif</td>
<td colspan="2" align="right">top cell II /some text</td>
</tr>
<tr>
<td width="200">bottom cell I /nav menu</td>
<td>bottom cell II / a few images</td>
</tr>
</table>
In this case the empty cell is deleted and the text in top cell II can span the whole table width. I added a right align to keep the text at the proper location.
Which solution you choose depends on the maximum length of the text in top cell II. You can experiment with both examples to see which gives best results for your situation.
</added>