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

    Hi, I have a problem on my website. The logo on the page is “overlapping” the main menu.
    I’ve turned the settings for showing the mobile menu on smartphone and tablet but is not enough.
    I want to change the css rules from 989px to 1129px.
    Can anyone tell me where are all the media queries that hide the desktop menu and show the mobile one?

    Thanks.

    #537414

    Hi WEBCREATIVI!

    Add this to your custom CSS.

    @media screen and (max-width: 1129px) {
    nav.main_menu { display: none !important; }
    #advanced_menu_toggle { display: block !important; }
    }

    Regards,
    Elliott

    #537488

    Also #advanced_menu_hide { display: block; } inside your media query. Many thanks. :)

    #537508

    Hi!

    Please add following code to Quick CSS as well

    #wrap_all {
    position: relative !important;
    }

    Regards,
    Yigit

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