Help With Table Layout

liunx

Guest
I need some help on my site, <!-- m --><a class="postlink" href="http://www.hostultra.com/~rmexecentral">http://www.hostultra.com/~rmexecentral</a><!-- m --> .<br />
<br />
As you can see, it's all one table.<br />
But I want to make each section a table.<br />
Like Site Related is one table, Main is one table, Games is one table, and Shout Box is one table.<br />
<br />
So does anyone know the code to do this?<br />
And how do I align it?<!--content-->just keep what you have and put a table inside the cells you want the stuff to appear.<!--content-->Yep...you can "nest" tables inside tables. The Code would look like this:<br />
<br />
<table><br />
<tr><br />
<td>***insert whole table here***</td><br />
</tr><br />
<tr><br />
<td><table><br />
<tr><br />
<td>content here</td><br />
</tr><br />
</table></td><br />
</tr><br />
</table><br />
<br />
As you can see, the contents of a table cell can be another table.<!--content-->
 
Back
Top