Why is my menu option appearing below the scrolling view?
I have a menu button on my screen, and when I click on it, the menu options appear but the content scrolls above the menu. How can I make the menu option appear above the scrolling content?
I have tried increasing the z-index, but it's not working. Any suggestions?
.nav_bar {
background: #597A4D!important;
border-style: none;
height: 44px;
border: 0px!important;
border-radius: 0px!important;
z-index:99999;
}
I found the solution on my own.
Here is the updated CSS:
.nav_bar {
background: #597A4D!important;
border-style: none;
height: 44px;
border: 0px!important;
border-radius: 0px!important;
z-index:99999;
}