Viewing 3 replies - 1 through 3 (of 3 total)
  • Pradnya

    (@pradnyajegstudio)

    Hi @psycholoogmarieke

    Do you want the height to wrap only the menu and not cover the height from the top to bottom?

    To create sub-menu always open. Please try to use this CSS. Add it to Appearance > Customize > Additional CSS.

    @media screen and (max-width: 1024px) {
        .gutenverse-menu .sub-menu {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
        }
    }
    Thread Starter psycholoogmarieke

    (@psycholoogmarieke)

    hi, yes indeed, I want the height to wrap only the menu and not cover the height from the top to bottom.

    and the code works, but then i dont need the indicator anymore right.. can i delete that only at the phone?

    Pradnya

    (@pradnyajegstudio)

    Here’s the CSS code that applies to everything.

    @media screen and (max-width: 1024px) {
        .gutenverse-menu .sub-menu {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
        }
    
        .guten-nav-menu.guten-element.break-point-tablet .gutenverse-menu-wrapper {
            height: auto !important;
        }
    }
    
    @media screen and (max-width: 780px) {
        .guten-nav-menu .gutenverse-menu-wrapper .gutenverse-menu li.menu-item-has-children > a > i {
            display: none;
        }
    }
    
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘mobile submenu size’ is closed to new replies.