Tagged: 

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1494914

    Hi!
    What settings do I need to adjust so that the menu, when it becomes a two-line menu, doesn’t overlap with the page content, but rather that the sticky part is below the second menu line?
    kind regards, Sandra

    #1494919

    Hey SanKlei,

    Please try this in Quick CSS to activate the mobile menu at an earlier point:

    @media only screen and (max-width: 1290px) {
      nav.main_menu {
        display: block !important;
      }
      #avia-menu .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    Best regards,
    Rikard

    #1494920

    Hi Rikard,
    please explain this for a non-developer. So what do I have to do with this?

    #1494927

    Hi,

    Please paste in the Quick CSS box under Enfold->General Styling.

    Best regards,
    Rikard

    #1494973

    Ok, thank you
    This works, but now I have 2 burger menu icons, which are overlapping the logo. That’s not, what I wanted. Is ist possible to set the sticky header under the 2nd menu line?

    Can I upload Images to demonstrate?

    #1494979

    Hi,

    You can upload screenshots to a service like Google Drive, Dropbox, Imgur, Snipboard etc, then link to them here.

    Best regards,
    Rikard

    #1494980
    #1494989

    Hi,

    Thanks for the screenshots. How exactly are you looking to change the behaviour of the menu?

    Best regards,
    Rikard

    #1495289

    Hi Rikard, in die Drive Link above I uploaded a video for you.
    I asked, If it’s possible to make the sticky header under the 2-line menu. So that the text will not go over the picture (Bildschirmfoto 2026-02-10 um 09.29.55)

    #1495312

    Hi,

    Thanks for the clarification. That is the reason I suggested CSS to activate the mobile menu at an earlier point, there’s not enough room to accomodate all the menu items on smaller screen sizes.

    Best regards,
    Rikard

    #1495361

    Yes, we’ve already been there. Please read above. In the second photo, you can see that two burger menus then appear. And the search bar, which is normally on the right, is now on the left above the logo. This should be improved.

    https://drive.google.com/drive/u/1/folders/1wmHMUl0aF8goEq2xWpz54DbNkryh2VdX

    #1495371

    Hi,

    Please try this CSS instead:

    @media only screen and (max-width: 1290px) {
      nav.main_menu {
        display: block !important;
      }
      #avia-menu .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
      #header_main_alternate {
        display: none; 
      }
    }

    Best regards,
    Rikard

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