[Resolved] Slide-out Menu, change breakpoint

Home Forums Support [Resolved] Slide-out Menu, change breakpoint

Home Forums Support Slide-out Menu, change breakpoint

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #748855
    Shery

    Hi.
    I added this code to activate the slide-out menu at 1290 px breakpoint, but from 1290 to 1080 screen size, the slide-out menu does not work. If you click on anything, the menu closes. Also it does not show sub-menus or the down arrows. What am I missing or doing wrong?
    Thank you!


    @media
    only screen and (max-width: 1290px) {
    /*Slideout Menu*/
    .main-navigation .menu-toggle,
    .main-navigation .mobile-bar-items,
    .sidebar-nav-mobile:not(#sticky-placeholder) {
    display: block;
    }
    div#primary-menu.main-nav {
    display:none !important;
    }
    }

    #748919
    David
    Staff
    Customer Support

    Hi there,

    try adding this CSS:

    @media (max-width: 1290px) {
        .menu-item-has-children .dropdown-menu-toggle {
            display: block;
        }
    }
    #749023
    Shery

    Thank you David! That did it. I really appreciate your help!

    #749052
    David
    Staff
    Customer Support

    Glad to be of help.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.