Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #871598

    sonomacanopytours
    Participant

    Tried viewing on a few phones and only SOME of the dropdowns show – how can this be fixed? http://allianceredwoods.com/zipline/

    Thanks!

    #872360

    Rupok
    Member

    Hi there,

    Thanks for updating. It’s because you have forced the mobile menu to be fixed.

    .x-navbar-fixed-top {
        position: fixed;
    }

    It’s not supposed to be fixed on mobile.

    However in that case you can update your current code to following within the media query :

    .x-navbar-fixed-top {
      position: fixed;
      height: 400px;
      overflow-y: scroll;
    }

    Hope this helps.

    Cheers!