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

    Hello,

    I’ve just noticed that my main menu gets really crowded/overlaps on laptop screens. I added vertical dividers to help, but they are also overlapping right around 1200px screen width. Can you help?

    #796650

    Hey 1lizcollins,

    Try to go Enfold > Header > Mobile Menu (tab) and set Header Mobile Menu activation to Activate for Smartphones and Tablets (browser width below 990px). Hope this helps :)

    Best regards,
    Nikko

    #796665

    Thanks Nikko, but I’ve already done that. It’s the gap between 1220px and 990 that seems to be a problem. How can I force more space between the menu items in that screen size range?

    #796919

    Hi,

    You have this in your CSS already:

    @media only screen and (max-width: 1225px) and (min-width: 990px) {
    .av-main-nav > li > a {
        padding: 0 4px;
    }
    }

    Try changing it to this instead:

    @media only screen and (max-width: 1225px) and (min-width: 990px) {
    .av-main-nav > li > a {
        padding: 0 12px;
    }
    }

    Best regards,
    Rikard

    #797769

    Ah! Somehow I missed that I had this code in there. Yes, that did it. Thank you! You can mark this as solved.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Main menu gets crowded on mid-size screens’ is closed to new replies.