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

    Dear support,
    i change from desktop to mobile-menu with the following code. But around 950px the mobile menu appears on the left side instead of the right side. How can i avoid this?

    /* Activate burger menu */
     @media only screen and (max-width: 1200px) {
    #top #header .av-main-nav > li.menu-item  {
        display: none!important;
    }
    #top #header .av-burger-menu-main {
        cursor: pointer;
        display: block!important;
    }}
    #1313664

    Hey dondela,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (min-width: 990px) and (max-width: 1200px) {
    #header_main_alternate {
      display: none; 
    }
    .html_header_top .av_bottom_nav_header .av-logo-container .main_menu {
        display: block;
        left: auto;
        right: 0;
    }
    }

    Best regards,
    Rikard

    #1313681

    Hey Rikard,
    thanks for your help. I tried this code, but now mobile-menu is underneath the Logo and on the left side instead of the right side. (Screenshot)

    #1313875

    Hi,

    Please try this CSS as well:

    @media only screen and (min-width: 990px) and (max-width: 1200px) {
    .html_header_top #top .av_menu_left .main_menu {
        left: auto;
        right: 0;
    }
    }

    Best regards,
    Rikard

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