Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript slide out menu bar won't scroll Reply To: slide out menu bar won't scroll

#249691
Beverleyh
Participant

Scrolling of a fixed position container is hinky on iOS so you might have better luck putting a full sized div inside the .drawer-nav and scroll that instead;

.drawer-nav div {
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}