Inside ddsmoothmenu.css, you currently have the rules pertaining to the shadow of the menu disabled:
Code:
/* ######### CSS for shadow added to sub menus ######### */
/*
.ddshadow{ /*shadow for NON CSS3 capable browsers*/
/*position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: silver;
}
.toplevelshadow{ /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
/*opacity: 0.8;
}
*/
It should be enabled. Replace the above with the default code:
Code:
.ddshadow{ /*shadow for NON CSS3 capable browsers*/
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: silver;
}
.toplevelshadow{ /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
opacity: 0.8;
}
Bookmarks