• Not quite sure what I’ve done/not done here.

    When reducing width of browser, the main menu on page (banners, flyers, etc) spills over left/right rather than resizing (until a certain point when it turns into hamburger menu)…

    Can anyone help resolve please?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • In WordPress dashbaord please go to Appearance->Customize->Additional Css option then put below code

    @media(min-width:1026px){
    .wp-block-navigation__container{
    display: none;
    }

    .wp-block-navigation__responsive-container-open{
    display: block !important;
    }

    .wp-block-navigation.wp-container-11{
    flex-wrap: wrap;
    }
    }

    if this one not work then please put like that

    @media(min-width:1026px){
    .wp-block-navigation__container{
    display: none !important;
    }

    .wp-block-navigation__responsive-container-open{
    display: block !important;
    }

    .wp-block-navigation.wp-container-11{
    flex-wrap: wrap !important;
    }
    }

Viewing 1 replies (of 1 total)

The topic ‘Menu spills left/right’ is closed to new replies.