-1

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.

http://jsfiddle.net/tcKvH/1/

thanks

<div></div>
user3262259
  • 37
  • 1
  • 2
  • 5

2 Answers2

0

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

j2e
  • 556
  • 3
  • 10
0

Try this

DEMO

#menu li a:hover {
    color:#c00;
    box-shadow: 10px 10px 5px #888888;
}
Indra Yadav
  • 600
  • 5
  • 22