Tessa&Charity
01-17-2003, 10:55 PM
Sorry, I'm a complete newbie at this- I have always used frames or nothing at all, but I'm trying to work out with tables for this new page. ok... basically what I want is a three-cell table... One on the left, one on the top, and one on the right. What is the coding for that?
~~Tessa~~
LadyCrow
01-18-2003, 04:19 AM
do you want the ones on the left/right to be below the top one?
Tessa&Charity
01-19-2003, 01:47 AM
Yeah, so that I have three cells.... one on top, and two below it. Can I do that?!
~~Tessa~~
LadyCrow
01-19-2003, 03:02 AM
maybe
but i am no sure how
i think perhaps this would be more of a rowspan
heh
Tessa&Charity
01-19-2003, 05:05 PM
Hmmmm.... thanks, I think I'll figure it out eventually....
*wanders off looking thoughtful*
~~Tessa~~
LadyCrow
01-20-2003, 04:38 AM
meant colspan
oops
which doesnt exist as far as i know
epolady
01-20-2003, 05:52 AM
something like this?
<table>
<tr>
<td colspan="2">
Banner/Text, whatever</td>
</tr>
<tr>
<td valign="top">
Cell 1 Stuff</td>
<td valign="top">
Cell 2 Stuff</td>
</tr>
</table>
lilchici13
01-23-2003, 11:32 PM
i know how heres the code:
<table border="1" bordercolor="yourcolor" cellpadding="0" cellspacing="0">
<tr>
<td height="150" width="750" colspan=6><font color="your color" font face="arial">Banner goes here</td>
</tr>
<td height="450" width="375"><font color="yourcolor" font face="arial">Links go here</td>
<td height="450" width="375"><font color="yourcolor" font face="arial">Main info goes here</td>
</tr>
</table>
edit it according to what you want
Tessa&Charity
01-24-2003, 02:59 AM
Originally posted by lilchici13
i know how heres the code:
<table border="1" bordercolor="yourcolor" cellpadding="0" cellspacing="0">
<tr>
<td height="150" width="750" colspan=6><font color="your color" font face="arial">Banner goes here</td>
</tr>
<td height="450" width="375"><font color="yourcolor" font face="arial">Links go here</td>
<td height="450" width="375"><font color="yourcolor" font face="arial">Main info goes here</td>
</tr>
</table>
edit it according to what you want
ooo thanks so much!
~~Tessa~~
lilchici13
01-24-2003, 08:16 PM
ur welcome i no how frustrating tables can be :)