View Full Version : Tables on both sides


willworkforchoc
06-23-2003, 01:09 AM
I am considering redoing my site. I have this long list of pages on the lest side. What I am thinking is putting tables on both sides with main stuff in the middle. Would tables work? or is there something easier to use?

Thanks

angelivion
06-23-2003, 01:23 AM
tables and frames can be used

willworkforchoc
06-23-2003, 02:16 AM
Can you give some tags? I've tried td align= "right" but it does not work.

Thanks

willworkforchoc
06-23-2003, 02:25 AM
I've got them aligned but they are not positioned the same. They are under one another.

pb&j
06-23-2003, 05:02 AM
somthing like this?

<table><tr><td valign="top">

<table border="1"><tr><td>
this is on the left side
</td></tr></table>

</td><td valign="top">

<table border="1"><tr><td>
this is in the middle
</td></tr></table>

</td><td valign="top">

<table border="1"><tr><td>
this is on the right side
</td></tr></table>

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

willworkforchoc
06-23-2003, 02:21 PM
Thanks pb&j