Ok I am not trying to get an element to a fixed position, im trying to get a div tag out of fixed position. i have a header that is at the top position relative. below it is just another div tag with content in it. when i went to preview it in IE6, the header was positioned at the very top, and was fixed. it stayed at the top when i scrolled down, but really it was position relative. no elements in my css are positioned fixed by the way. has anyone had this before and know a fix?CSS:\[code\]#top { height: 168px; display: block; clear: both; overflow: visible; position: relative; margin-bottom: 15px; }\[/code\]HTML:\[code\]<div id="top"> <a href="http://stackoverflow.com/questions/2075837/link.html">Link 1</a> <a href="http://stackoverflow.com/questions/2075837/link.html">Link 1</a> <a href="http://stackoverflow.com/questions/2075837/link.html">Link 1</a> <a href="http://stackoverflow.com/questions/2075837/link.html">Link 1</a> </div>\[/code\]then just regular div tag underneath with content...