Dermot Active member Sunday at 6:55 PM #321 seems to be cards are still popping behind certain elements like images from giphy addon z-index issue maybe?
seems to be cards are still popping behind certain elements like images from giphy addon z-index issue maybe?
Matt C. Well-known member Sunday at 6:58 PM #322 Dermot said: seems to be cards are still popping behind certain elements like images from giphy addon z-index issue maybe? Click to expand... Would mind DMing me a link to your site so I can look. I just tested on my forum and it works fine. For anyone else, his issue was with @BassMan's Sticky Post Bit modification. The fix is to add z-index: 1 to .message-user. Code: /* [cXF] Sticky Postbit */ @media (min-width: @xf-responsiveMedium) { .message-user { position: sticky; top: 37px; z-index: 1; .message-userArrow { right: -11px; } } } /**********/ Last edited: Sunday at 8:00 PM
Dermot said: seems to be cards are still popping behind certain elements like images from giphy addon z-index issue maybe? Click to expand... Would mind DMing me a link to your site so I can look. I just tested on my forum and it works fine. For anyone else, his issue was with @BassMan's Sticky Post Bit modification. The fix is to add z-index: 1 to .message-user. Code: /* [cXF] Sticky Postbit */ @media (min-width: @xf-responsiveMedium) { .message-user { position: sticky; top: 37px; z-index: 1; .message-userArrow { right: -11px; } } } /**********/