Tagged: ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1331761

    I had centered my logo in the menu, 3 menu items on the right of the logo, and 3 on the left.

    Once I did this, it seems the menu items are now further apart including the mega menu items . Also, I would like the menu items closer together in general. When I try this own my own, it ends up overlapping the logo. Please help.

    • This topic was modified 2 years, 11 months ago by EL. Reason: updates
    #1331796

    Hey EL,

    Thank you for the inquiry.

    You have to adjust this css code before decreasing the space between the third and fourth menu items. This will also center align the main menu container.

    #header .main_menu {
        width: 100%;
        left: 53%;
        transform: translateX(-50%);
    }
    

    The left position or property should be set from 53% to 50%.

    Best regards,
    Ismael

    #1346461

    Thank you for the response! I’m still having issues with the right half of the menu jumping below the top portion of the menu when the screen is smaller.

    #1346462
    This reply has been marked as private.
    #1346524

    Hi,

    We could hide the default menu and set the mobile menu to display when the screen width is less than 1024px.

    
    @media only screen and (max-width: 1024px) {
        .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special {
            display: block;
        }
    
        .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item {
            display: none;
        }
    }

    You can adjust the max-width value in the css media query above if you want the mobile menu to switch earlier.

    Best regards,
    Ismael

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