FreePgs.com Forum

FreePgs Related => Support Requests => Topic started by: darkdemun on March 25, 2006, 09:59:55 PM

Title: html tables
Post by: darkdemun on March 25, 2006, 09:59:55 PM
i need to know how to align three tables beside eachother like...

TABLE 1       TABLE 2       TABLE 3
lalallalalla         LALALA          fgffdsg
lalallalall                                 fgdfgdfg
lalallalllla
lalallalalala
allllalallallal
lalalalalal
lalalalalala
lalalalalala

TABLE 4
fdfdgf
fgdfgdf
gdfgdfg
rfgfdg



so in the first table would be the menu, in the second will be the News and updates and in the 3rd will be advertisements  and in the 4th will be affiliates i cant get it  to work some please help



Thanks.
Title: Re: html tables
Post by: Ben on March 25, 2006, 11:00:54 PM
Nested tables would work fine for this situation.. Just make a table and put tables in the cells.

But I still prefer divs for all that stuff.. lol.
Title: Re: html tables
Post by: darkdemun on March 26, 2006, 05:25:43 AM
i think i unserstand do you have a quick example
Title: Re: html tables
Post by: Ben on March 26, 2006, 07:18:30 AM
<table>

<tr>
<td>
<table><tr><td>Table 1</td></tr></table><table><tr><td>Table 4</td></tr></table></td>
<td><table><tr><td>Table 2</td></tr></table></td>
<td><table><tr><td>Table 3</td></tr></table></td>
</tr>

</table>