Put this conditional stylesheet after your other stylesheets (last thing in the head):
Code:
<!--[if lte IE 7]>
<style type="text/css">
#maincontainer{
clear: right;
position: relative;
}
.ddpaneltab {
position: relative;
margin-bottom: -1.83em;
z-index: 1;
}
</style>
<![endif]-->
This is good for IE 6 and 7 but I don't have a clue about IE 8 (I refuse to test in it until its official release). IE 8 is supposed to be more compliant, so it is right to exclude it as I have done. If you notice problems in that browser, change the opening conditional to simply:
If IE 8 is still giving problems, add the meta tag:
Code:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
right after your existing meta tag.
Bookmarks