Okay
  Public Ticket #1527962
Menu
Closed

Comments

  •  1
    kiprasbiel started the conversation

    Hello, I have a big menu with a lot of categories and it seems that normal menu can't handle this much categories. In desktop menus overlap and in mobile they don't even show up. How to fix this?

  •  604
    WordPress replied

    Hi,

    You can check again. You can user megamenu


  •  1
    kiprasbiel replied

    Do I need to install new plugin, or is this mega menu already implemented to the theme? When choosing the menu I found two options Primary menu and mega menu, but when checked mega menu no menu is visible at all.

  •  604
    WordPress replied

    You can user megamenu in theme.

    Thanks

    Alex Vũ




  •  1
    kiprasbiel replied

    Thanks, on mobile works fine, but on desktop there are still some problems (see pictures). The menu fails to open deeper layers and just leaves empty spaces. 

  •  604
    WordPress replied

    Hi,

    I add style in child theme. I recommend using the normal menu will be more beautiful

    @media (min-width: 992px){
        .mega-menu > li.megamenu .sub-menu li .sub-menu a {
            padding-left: 10px;
        }
        .mega-menu li.megamenu .sub-menu .sub-menu{
            position: static;
            opacity: 1;
            visibility: visible;
            -webkit-transform: none;
            -moz-transform: none;
            -ms-transform: none;
            -o-transform: none;
            transform: none;
        }
    }

    Thanks

    Alex Vũ


  •  1
    kiprasbiel replied

    Thanks, looks good now :)