Is it IE6 or IE7?
And where can we see your site?
Is it IE6 or IE7?
And where can we see your site?
Both IE6 and IE7 aparently.
And the site is www.datareflects.biz
I am not that familiar with that template but suspect that the css with it has not been updated...
Interactively applying a later stylesheet I do not see the issues.
There is a IE specific stylesheet in the downloads section if that might be of interest.
appears you have 2 #mainWrapper in your css so the 2nd one is overriding the first
The only actual conflict there is in the margin. It is defined three different times, and the last is what controls:For simplicity and sanity you should gather all #mainWrapper declarations in one rule.Code:#mainWrapper { background-color: #FFFFFF; text-align: center; margin-left: 10em; width: 900px; vertical-align: top; } ... #mainWrapper {background-image: none; padding: 0; margin: 0;} #navColumnOneWrapper, #navColumnTwoWrapper, #mainWrapper { margin: auto; }