I would love to use this module but my popups keep popping behind the content of the page, any ideas how to fix this?

Comments

chien_fu’s picture

Any word on this? I'm having the same problem, using Acquia Slate. I can't edit anything in the popup because clicking in a popup text box actually clicks the admin content on the page behind the popup.

Kayla’s picture

I solved a similar/same issue via css. Although I am using the 6.x-2.0-beta0 version, the source of my issue probably holds for the 6.x-2.x-dev version as well.

In my case the menu displayed over the pop-up window. In my theme's css, I saw that the menu has a z-index of 97, whereas the popups.css supplied with this module states .popups-box { z-index: 9; } (among other settings).

So, I added .popups-box { z-index: 100; } (100 being higher than 97) to my (custom child/sub)theme's css file to override the module's css. Now my pop-up window stacks on top of the menu instead of below it, and I don't need to worry about overwriting my setting during a module or (base/parent)theme upgrade.