I think this will fix everything, remove this entirely:
Code:
<!--[if lte IE 7]>
<style type="text/css">
html .jqueryslidemenu {
height: 1%;
}
/*Holly Hack for IE7 and below*/
</style>
<![endif]-->
Then remove the conditional comments only for this:
Code:
<![if !IE 6]>
<style type="text/css">
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.shiftcontainer {
position: relative;
left: 5px; /*Number should match -left shadow depth below*/;
top: 5px; /*Number should match -top shadow depth below*/;
margin-top: 5px;
}
.shadowcontainer {
width: 840px; /* container width*/;
background-color: #d1cfd0;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
.shadowcontainer .innerdiv {
/* Add container height here if desired */
background-color: white;
border: 1px solid gray;
padding: 6px;
position: relative;
left: -5px; /*shadow depth*/;
top: -5px; /*shadow depth*/;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
</style>
<![endif]>
Good luck!
Bookmarks