PDA

View Full Version : Columns, tables, forms, and other scary monsters.


jessegut
02-18-2004, 05:43 PM
Situation: I am trying to set up a HTML guestbook page and am having a heck of a time setting up three columns of "check boxes" (with five items in each column) that will appear in the middle of the page. The three columns should follow other "forms" that ask for guest name, address and such.

Questions: Does anyone know how to set-up columns in a "form?" Should I be using a "table?" Can anyone point me to a good example of how this has been done in the past (tables or columns)? Did anyone read about the Sun in galaxy RX J1242-11 that was sucked into a black hole?

Signed,
Newbie at your mercy.

azlatin2000
02-18-2004, 05:51 PM
Never heard of the sun or galaxy.

The example you are looking for is too specific to find so i made the code for you.

The table you want using html transitional:
<TABLE ALIGN="CENTER">
<TR>

<TD>
Checkboxes 1-5
</TD>

<TD>
Checkboxes 6-10
</TD>

<TD>
Checkboxes 11-15
</TD>

</TR>
</TABLE>

Insert that where you want them to appear in between the form tags.

TR stands for table row and TD stands for table data

Hope this helps.

See DC i can be helpful to people who aren't just trying to raise their post count. (You know who i mean):p

jessegut
02-18-2004, 05:55 PM
Thanks a million! I'll give it a shot.