Additions:
reference: [[http://alistapart.com/articles/footers/ alistapart.com]]
Deletions:
Additions:
**css**
**html**
<div id="footer">
<!-- INSERT FOOTER CONTENT -->
**html**
<div id="footer">
<!-- INSERT FOOTER CONTENT -->
Deletions:
Additions:
This set of rules seems to do the trick for both IE and Firefox. Not extensively tested. Page would be the id for the outmost container. The footer clear block is necessary to make room for the footer block which, being positioned absolutely, is outside normal page flow. See html markup for basic layout.
.footer_clear { height:24px; }
%%(html)
<body>
<div id="page">
<!-- INSERT PAGE CONTENT -->
<div class="footer_clear"></div>
<div id="footer"></div>
</div>
</body>
.footer_clear { height:24px; }
%%(html)
<body>
<div id="page">
<!-- INSERT PAGE CONTENT -->
<div class="footer_clear"></div>
<div id="footer"></div>
</div>
</body>
Deletions:
Additions:
----
CategoryCss
CategoryCss