Encountering an issue with older versions of IE. I have three left-floated divs above three floated divs, each in separate wrappers. The lower divs are overlapping the upper ones specifically on older versions of IE; however, it works fine on Safari, mobile, and Firefox.
Seeking assistance.
Snippet of my code:
#header {
z-index: 1000;
background-image:
background-repeat: repeat-x;
height: 39px;
margin-right: auto;
margin-left: auto;
}
#wrapper {
background-position: center bottom;
background-repeat: no-repeat;
width: 980px;
margin-right: auto;
margin-left: auto;
height: 650px;
}
#headwrapper {
margin-right: auto;
margin-left: auto;
height: 39px;
width: 900px;
background-position: left;
background-repeat: no-repeat;
... (more CSS code) ...
#footer {
border-top-style: groove;
border-top-color: #4c4c4c;
border-top-width: 2px;
background-image:
background-repeat: repeat;
clear: both;
height: 150px;
margin-right: auto;
margin-left: auto;
}
... (more CSS code) ...
</div>
EDIT:
Appreciate the suggestions provided and apologize for any duplicate posts. I have tried implementing all those suggestions as well as using xml1 transitional doctype and html 4.01 transitional, but none of them seem to be effective. Any further ideas?