We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.interactive-map .category-map-layers is using z-index: 100 which make the panel appears over the Sticky Navbar.
.interactive-map .category-map-layers
z-index: 100
The text was updated successfully, but these errors were encountered:
Small changes can resolve this issue by updating to: .interactive-map .category-map-layers { z-index: 99; }
.interactive-map .category-map-layers { z-index: 99; }
Sorry, something went wrong.
This also happen to .sticky { z-index: 1020 } on Profile page plugin. This can be resolved by update the CSS to .sticky {z-index: 99}
.sticky { z-index: 1020 }
.sticky {z-index: 99}
No branches or pull requests
.interactive-map .category-map-layers
is usingz-index: 100
which make the panel appears over the Sticky Navbar.The text was updated successfully, but these errors were encountered: