below is the JSFiddle for a drop down menu that I am using. Using just css can somebody please show me how to add a drop shadow to the secondary bar (the drop down bar) as I am not very good with CSS and I am still learning.
thanks
<div></div>
below is the JSFiddle for a drop down menu that I am using. Using just css can somebody please show me how to add a drop shadow to the secondary bar (the drop down bar) as I am not very good with CSS and I am still learning.
thanks
<div></div>
In the simplest way you can add this to your css.
#menu li ul li{
background: #EEE;
box-shadow: 5px 5px 5px #888;
}
But if you need cross browser compatibility you should look into browser specific prefixes and filters for IE