There has been extensive modification to the css files. I haven't been able to see exactly where this problem has crept in. But it looks like that if you add the !important keyword to the z-index value for the shadow, that will fix it (ddsmoothmenu.css around line #116, addition red):
Code:
/* ######### CSS for shadow added to sub menus ######### */
.ddshadow{
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background-color:#00F; /*#ccc;*/ /* generally should be just a little lighter than the box-shadow color for CSS3 capable browsers */
z-index:100 !important;
}
Bookmarks