Reputation: 10176
I have a problem that a z-index property is not applying. Is there a concrete dependency to other properties?
It looks right now like that, the Avada Theme sticky header is above everything:
The z-index of the header menu is "only" 10011:
Even if I set a style on ".fdm-ordering-sidescreen" with z-index to 200000, it is not above the menu. WHY is that? Shouldn't it become on top?
shorturl.at/gjvS3
-> Click once on "add to cart" for a menu item, than click on the shopping cart icon and scroll!
Upvotes: 1
Views: 1491
Reputation: 32275
You can try to unset the z-index value of .fusion-fullwidth .fusion-row
to z-index
: unset
Because now even when you set .fdm-ordering-sidescreen
to 200000, it is calculated as 10.200000 courtesy of the z-index
set on one of its parent .fusion-fullwidth .fusion-row
.
Output:
Upvotes: 1