Can Someone Help Me With My Layout?

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
Majoraslayer
Forum Commoner
Posts: 64
Joined: Thu Jun 30, 2005 11:50 am
Location: In Your Mind...
Contact:

Can Someone Help Me With My Layout?

Post 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.
Last edited by Majoraslayer on Fri Jul 08, 2005 10:50 am, edited 1 time in total.
User avatar
hawleyjr
BeerMod
Posts: 2170
Joined: Tue Jan 13, 2004 4:58 pm
Location: Jax FL & Spokane WA USA

Post 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>
Majoraslayer
Forum Commoner
Posts: 64
Joined: Thu Jun 30, 2005 11:50 am
Location: In Your Mind...
Contact:

Post by Majoraslayer »

Oh, I see, that makes since. Thanks! I hadn't thought of that.
Post Reply