Aligning tables

liunx

Guest
Heres an example:<br />
<br />
<!-- m --><a class="postlink" href="http://www28.brinkster.com/wallshame/NEWLAYOUT.HTM">http://www28.brinkster.com/wallshame/NEWLAYOUT.HTM</a><!-- m --><br />
<br />
I want to align the "NEWS" table and "MENU" table so that the "NEWS" table will be higher up so that it is level with the "MENU" table.<br />
<br />
How can I do that?<!--content-->Instead of two seperate tables, nest the two tables inside an outer table.. like this:<br />
<br />
<br />
<table><br />
<tr><br />
<td><br />
<br />
<table .. MENU table><br />
</table><br />
<br />
<br />
</td><br />
<br />
<td><br />
<br />
Space column<br />
</td><br />
<br />
<td><br />
<br />
<table News Table><br />
</table><br />
<br />
<br />
</td><br />
</tr><br />
</table><br />
<br />
<br />
<br />
Also you can use "valign=top" in the td elements of the outer table.<!--content-->Alright. Thanks alot! I don't get it but I'm going to keep trying at it and figure it out sooner or later.<!--content-->
 
Back
Top