Active
Project:
Popups API (Ajax Dialogs) [D7]
Version:
6.x-2.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
27 Jan 2011 at 03:33 UTC
Updated:
14 Oct 2011 at 01:05 UTC
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
Comment #1
chien_fu commentedAny 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.
Comment #2
Kayla commentedI 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.