デフォルトモデルはコンテンツボックスにパディングトップ
を追加しています。
height:100%
の要素に 100%+ 130px
の高さを設定します。
So you have to add another <div>
wrapper with
auto height and add it padding-top: 130px;
<body style="height:100%; margin:0; position:relative;">
<div id="wrapper" style="min-height:100%;">
<div id="container" style="padding-top:130px; padding-bottom:130px;">
</div>
</div>
<div id="footer" style="position:absolute; bottom:0; height:130px;">
</div>
</body>
</html>