I have menu on a page and div that is absolute positioned. The problem is that when this div is on a page, then I cannot click on any links in menu items.
When I re
Add position:relative to #menu
position:relative
#menu
#menu { position:relative; }
JS Fiddle Demo