Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1360119

    Hi,

    I don’t understand why but or site doesn’t display the mobile/burger menu on mobile screans : https://www.edunao.com/

    Can you help on this?

    Thank you and best regards,

    Olivier

    #1360141

    Hey cyrilbedel,

    It’s doing that because of this CSS:

    .av-logo-container, #footer .container {
        width: 1310px !important;
        max-width: 1310px !important;
    }

    If you only want that to apply on desktop, then please try wrapping it in a media query instead:

    @media only screen and (min-width: 989px) {
    .av-logo-container, #footer .container {
        width: 1310px !important;
        max-width: 1310px !important;
    }
    }

    Best regards,
    Rikard

    #1360311

    Hi Rikard,

    Thank you very much, it works perfectly!

    You can close the thread.

    Best regards,

    Olivier

    #1360325

    Hi,

    Thanks for letting us know, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Bug on the Mobile/burger menu’ is closed to new replies.