Issue
I'm using wordpress and bootstrap and I have a a navber that sticks to the top of the page when scrolling, problem is it falls behind some of the contents on the page (see image for reference). How to I get the nabber to always be in front of whatever its scrolls past? Thanks in advance.
HTML:
<nav class="navbar navbar-inverse" data-spy="affix" data-offset-top="91" id="search-nav"></nav>
CSS:
#search-nav {
height: 50px;
width: 100%;
background-color: #000;
}
Solution
You can try to put a value of z-index
combined with a defined position (could be fixed
, absolute
, relative
.. ) which is higher than the default z-index
value of the below elements.
Answered By - Vincent G Answer Checked By - Mary Flores (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.