tags:

views:

30

answers:

1
+3  A: 

Well, near as I can tell, the ads appear later in the DOM and so naturally cover the popup list. You should be able to override this using z-index:

#nav li ul { z-index: 1; }
Shog9
+1 and the accepted answer. You got it right about the loading order and your solution works. Thank you very much.
Daok