I am trying to create an off-canvas
menu with foundation
6 like it's done in the official site.
When it comes to the mobile
menu bar, I'd like to make it sticky to the bottom of the screen.
.title-bar {
position: fixed;
width: 100%;
bottom: 0;
}
But as soon as I click the mobile menu, the menu bar jumps away as if it was absolute instead of fixed.
Anyone had this problem and solved it yet?