I've been working on a drop-down menu, but I can't seem to get the border and box shadow styling to display properly over my fixed .menu2 div.
.menu ul li ul{
position:absolute;
right: 0px;
border:1px solid #C3D1EC;
/*box-shadow*/
-webkit-box-shadow:0 1px 5px #CCCCCC;
-moz-box-shadow:0 1px 5px #CCCCCC;
box-shadow:0 1px 5px #CCCCCC;
margin-top:-1px;
display:none;
padding:0px 16px 0px 0;
}
.menu-2 {
position: fixed;
top: 30px;
left: 0px;
width: 100%;
height: 100px;
background: #DDD;
color: #fff;
}