On my website (www.ResponderPSE.com), I just added a banner rotator based on jquery. The images are now blocking the pop up navigation on the left. I'm not a css expert and I did try adding a z-index: 999999; to the container div for the popout nav with no luck. So I'm hoping one of the CSS wizards here can pont out the fix for this. Thanks in advance
you probably added z-index to the wrong class/id this works: <ul class="subNav_popout" style=" z-index: 9999; "> so add z-index to .subNav_popout class the reasson why it didn't work for u cause u need to add it to the element in question that you want to be on top of the other elements, in this case the .subNav_popout cheers