javascript - Bootstrap Affixed nav bar w/ parallax scrolling problems -
essentially website has multiple parallax scrolling panels, picture embedded within div element, , splitting between 2 of panels, have navbar want affix top of screen... have completed navbar isn't on top layer , other divs on screen go on top of that, there "demo" or site can see actively happening. i'm not sure how either move rest of elements down without messing parallax or bringing z value of navbar above other elements... appreciated!
(i've had problem on other sites before i've created , i've never been able figure out)
you can use css z-index
property achieve you're looking for.
simply add high z-index
property value navbar selector, follows
.affix { // pre-existing properties z-index: 999; }
Comments
Post a Comment