Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

garyseven

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Fixed Menu Scrolling Problem #9116
    garyseven
    Participant

    small update…
    needs “nowrap”

    /*Scroll mobile menu*/
    @media (max-width: 767px) {
    .overflow-y-menu {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; /* mobile safari */
    height: calc(100vh – 85px);
    white-space: nowrap;
    }
    }

    in reply to: Fixed Menu Scrolling Problem #9115
    garyseven
    Participant

    in case anyone needs this, i figured it out.

    there may be a better way, and this may not handle all devices

    /*Scroll mobile menu*/
    @media (max-width: 767px) {
    .overflow-y-menu {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; /* mobile safari */
    height: calc(100vh – 85px);
    }
    }

    <div class=”collapse navbar-collapse overflow-y-menu” id=”navbarNavDropdown”>

    garyseven
    Participant

    Did you find a solution?

    in reply to: Fixed Menu Scrolling Problem #9111
    garyseven
    Participant

    Is there a solution to this? I have run into the same problem.

Viewing 4 posts - 1 through 4 (of 4 total)