I\'m having problems working out the z-index order for an application we\'re working on, i have two root parents, a nav bar and a map, and one child, the map tooltip. The na
If, in the real page, the tooltip has to be shown only on hovering the map container, you could just change dynamically its z-index like so:
tooltip
#map-container:hover { z-index: 16 }
Otherwise you need to change the position of the tooltip so that the nav-bar doesn't overlap it.
nav-bar