Page 1 of 1

Can Someone Help Me With My Layout?

Posted: Thu Jul 07, 2005 10:13 pm
by Majoraslayer
How can I get tables on both sides of the page straight across from each other? For an example of what I mean, the main page of this site:

http://devnetwork.net

has a perfect example of why I want to know. I need to make tables like that for various features I'm putting on my pages, but whenever I try to put the tables there in Frontpage weird things happen....like the table ends up inside another table or it ends up on the next line from last table but still aligned to the right. If it uses something besides tables, please help me out!

EDIT: I've decided to use this topic for all my layout problems, so I hope I can get it working right.

Posted: Thu Jul 07, 2005 10:17 pm
by hawleyjr
Create a "holder table"

IMHO - Don't use FP.

Code: Select all

<table width=&quote;100%&quote; border=&quote;0&quote; cellspacing=&quote;0&quote; cellpadding=&quote;1&quote;>
  <tr> 
    <td>
      <!-- START LEFT COLLUMN -->
      <table width=&quote;100%&quote; border=&quote;0&quote; cellspacing=&quote;0&quote; cellpadding=&quote;1&quote;>
        <tr> 
          <td>&nbsp;</td>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
      </table>
      <!-- END LEFT COLLUMN -->
    </td>
    <td>&nbsp;</td>
    <td>
      <!-- START RIGHT COLLUMN -->
      <table width=&quote;100%&quote; border=&quote;0&quote; cellspacing=&quote;0&quote; cellpadding=&quote;1&quote;>
        <tr> 
          <td>&nbsp;</td>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
      </table>
      <!-- END RIGHT COLLUMN -->
    </td>
  </tr>
</table>

Posted: Thu Jul 07, 2005 10:23 pm
by Majoraslayer
Oh, I see, that makes since. Thanks! I hadn't thought of that.