I may be a bit late adding my comments here, but I find this often helps with IE6 issues:
In your CSS file, for every element that contains a "float" property, add this property statement to the element:
This property is actually the default setting for an element and generally will not have any effect if added.Code:display: inline;
For example your CSS for one of your elements would change to:
This generally occurs when there is a margin on the same side as the float and has been described as the IE6 "Double Margin Bug", which can then affect other elements on the page.Code:#navigation { display: inline; float: left; width: 100%; padding-top: 10px; }
Also a note, if you need to see your site in IE6 you can always use Microsofts VMC for windows users. I wrote a post on my blog that gives a basic outline how to do this. Here is a permalink: IE6 Is Still Out There.
PS: The header alignment is still to the left.


LinkBack URL
About LinkBacks
Reply With Quote
