Reputation: 11
I have a problem with my nav scroll. I would just scroll the nav but I can't.
Here is my JSFiddle: JSFiddle
For see my problem you must click on menu
If anyone have a solution I would be very grateful.
Upvotes: 1
Views: 41
Reputation: 11297
You have 2 problems.
First, .mask
has z-index
of 10000 whereas it should be less than .pushmenu
.
Second, .pushmenu
should have overflow-y
set to auto
, this will add the scrollbar automatically when the content height exceeds its container height. In this case, the window's height.
.mask {
z-index: 999; /* change this accordingly--must be less than .pushmenu's z-index */
}
.pushmenu {
overflow-y: auto;
}
Upvotes: 2