18Sep/091
fixed position on IE6
Fixed position on xhtml elements make the elements fixed at its coordinates and it is not moved when you scroll the pages. One of popular example can be facebook panel.
#elementId { position:fixed; bottom:0; }
An example above will make the element stayed at the bottom of page.
But there is an issue on IE6 and this can be fixed via javascript. Simply get the javascript code from here and include to your page:
<script type="text/javascript" src="fixed.js"></script>
Reference:
October 27th, 2009 - 14:35
Good job.