-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
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
z-index issue with enabled pager (overlaying the fixed menu bar) #34
Comments
Is there a workaround? |
resetting all /* reset the wrong z-index from the page slider */
.lSSlideWrapper .lSFade > * {
z-index: auto;
}
.lSSlideWrapper .lSFade > *.active {
z-index: auto;
}
.lSSlideOuter .lSPager.lSpg > li a {
}
.lSAction > a {
z-index: auto;
} |
the patch above is not perfect: links in the slider are not clickable (hidden behind invisible divs) |
/* reset the wrong z-index from the page slider */
.lSSlideWrapper .lSFade > * {
z-index: 10 /* 9 */;
}
.lSSlideWrapper .lSFade > *.active {
z-index: 11 /* 10 */;
}
.lSSlideOuter .lSPager.lSpg > li a {
z-index: 12 /* 99 */;
}
.lSAction > a {
z-index: 13 /* 99 */;
}
/* reset the z-index from the nav */
.mobile-container {
z-index: 14 /* 2 */;
}
.mobile-menu {
z-index: 15 /* 3 */;
}
.mobile-menu .button_container {
z-index: 16 /* 100 */;
}
.overlay-light, .overlay-dark, .overlay-light-gradient, .overlay-dark-gradient {
z-index: 0 /* 0 */;
} with the quark theme, the mobile navigation is now on top, the slider is behind it and its links do work. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Gravs standard theme has a fixed menu bar at the top with a z-index of 2. The pager dots have a z-index of 100 and overlay it while scrolling.
The text was updated successfully, but these errors were encountered: