Alignment problem, please help.

polomolo

New Member
Hi,
I'm designing this website, for the first time ever. and I've made two sections. as you can see in the attached file. I've got 2 sections and then the footer as well on the bottom, I've managed to make these two sections. but my problem is that if one section is for some reason longer than the other because of text etc. etc. I get a gap between the footer and the other section. What did I do wrong?. or what could I do to make both sections be equal in height. I know a dodgy way of doing this, but i'd rather learn the proper way.

Please help.
Thanks.

Paul.
 

Attachments

  • Picture 1.jpg
    Picture 1.jpg
    24.4 KB · Views: 30

Romadjan

New Member
As i understood you are designing using div's. Try to include this into table and after that use div.

<table>
<tr>
<td>
<div>LEFT COLUMN</div>
</td>
<td>
<div>RIGHT COLUMN</div>
</td>
</tr>
<tr>
<td colspan="2">
<div>FOOTER</div>
</td>
</tr>
</table>
 
Top