Table Alignment help

liunx

Guest
I am working on a website, nothing spectacular, but just want some links. Basically, the table with the links i have with borders that you see, I would like to have an Identical table directly across and to the right side of the screen. Any suggestions on how i can do this? <br />
<br />
<!-- m --><a class="postlink" href="http://rap.midco.net/desavedo/web.html">http://rap.midco.net/desavedo/web.html</a><!-- m --><br />
<br />
<br />
Should i be using frames instead?<!--content-->in the table you can put align=right or you can put both table in one big table that has only 2 cells, 1 on the right and 1 on the left.<!--content-->I would wrap your existing table inside another table which is formatted like this:<br />
<br />
<table cellspacing=0 cellpadding=0 border=0 width=100%><br />
<tr><br />
<td align="left"><br />
here goes your table code<br />
</td><br />
<td align="right"<br />
here goes your second table code<br />
</td><br />
</tr><br />
</table><br />
<br />
<br />
You can try to view the attached page (I tried to format your page). Now, I just copied your first table, maybe you want to do something else with the links in the second table !!<br />
<br />
Kenneth<!--content-->That is exactly what i am looking for. That's way cool. I've been strugglin with this for a while. I'll remember this code as it will come in handy. Now i can finish up the web page. <br />
<br />
Thanks Again,<br />
:rocker:<!--content-->
 
Back
Top