Reputation: 6826
I'm having trouble getting a menu to appear on top of other elements on a page. The sample page code is here: http://jsfiddle.net/JdUTG/13/
Any ideas on what CSS properties I can use to get the menu to always be on top?
the menu is from here: http://www.cssplay.co.uk/menus/cssplay-click-click.html
Thanks
Upvotes: 0
Views: 80
Reputation: 15609
Take a look at it now: http://jsfiddle.net/joplomacedo/JdUTG/5/
You had z-index = -1;
instead of z-index: -1;
. Just a mistype.
Upvotes: 1