Hmm... I need to find out myself. I don't know what is the answer to your question. I'll do some investigation and get back to you if I bump into an good answer. You should email the people at iContact as they probably can help you..
”are you saying that you want the footer to always be the distance from the top of the page?” – NO..
I want the footer to go up and down by the content that the page has in it..
Ex: If I have a small content (text on the page),the footer to stay fix and do not fallow the content up..
And if I got allot of content (text on the page) the footer do go down to make room for the text..
In other words I have a problem with the scalability of the page.In the way that at to much content the page breaks apart..
You say that the proportions of the cell can by put with css ? can you point some beginners tutorials for that?.
Http://testsite45.go.ro/msied22.html.
This is my problem, the iContact site fell apart...
This happens when I put some content. Haw can I make the iContact site to stay fit?.
Http://testsite45.go.ro/msied23.html..
Sorry, you iContact site is not working for me - I can't view it at all....
I think I understand what you're saying now, and if you moved to a <div> based structure instead of a <table> it would be easier to work this..
Basically, you would have the following:.
Using css styling on these elements will enable you to create the behaviour you are after..
Www.w3schools.com.
Have excellent tutorials on many things, including CSS...
Option: overflow..
Overflow code in tabel:.
In the head:.
<style type="text/css">.
<!.
.scroll {.
Background-color: #ff8040;.
Overflow: auto;.
Height:330px;.
Font-family:verdana;.
Font-size:12px;.
Color:#000000;.
Padding-top:2px;.
Padding-left:10px;.
Padding-right:10px;.
Padding-bottom:10px;.
Border: 1px outset #ffffff;.
}.
>.
</style>.
In the body:.
<td valign="top"><div class="scroll">content lange text<br></div></td>.
The height:330px; has to be the height of the td.
Play with the other options in the style..
De height:330px; moet gelijk zijn van de height van de td..
Pas de andere opties in de style aan..
Inline style:.
<td height="350" colspan="2" bgcolor="#D3D3D3">.
<div style="height:340px;padding-top:2px;padding-left:10px;padding-right:10px;padding-bottom:10px;overflow:auto">.
<p>Allot of text </p>.
<p> Allot of text </p>.
<p> Allot of text </p>.
<p> Allot of text </p>.
<p> Allot of text </p>.
<p> Allot of text </p>.
<p> Allot of text </p>.
<p> Allot of text </p>.
<p> Allot of text </p>.
<p> Allot of text </p>.
<p> Allot of text </p>.
<p> Allot of text </p>.
<p> Allot of text </p>.
<p> Allot of text.
</p>.
<p> Allot of text </p>.
<p> This is my problem, the iContact site fell apart </p>.
<div>.
</td>..
Thanks allot guys .now I am trying to put in practice what you show me...

