Forum Moderators: not2easy
I got this css script where I've puta container around header, 3 columns & footer, when the content columns fill with data, the page should stretch, with the container stretching longer, columns longer, footer movin down as the container and columns grow,,,
okay, I just thought of something, i am gonna try position absolute
<div class="container">
<form runat="server">
<div class="header">
<div class="Title">
</div>
<div class="advertTop">
</div>
</div>
<div class="left">
<div>
<div class="centre">
</div>
<div class ="right">
</div>
<div class ="footer">
</div>
<br>
<div class="copywrite">
</div>
</div>
</form>
</div>
The centre column has a database driven list that can be longer than the screen. Now, in IE its okay, everything stretches, in firefox, the footer just stays where it is an the list/centre column pushes thru the footer
cheers