Tagged: 

Viewing 14 posts - 1 through 14 (of 14 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

    #1496073

    Danke. Das habe ich gemacht. Ich bin leider immer noch nicht zufrieden. Denn das Burger Menü und die Lupe verschwinden hinter dem Logo. Zuerst wird die Lupe regulär rechts angezeigt, dann springt sie zusammen mit Menü linkst hinter das Logo, dann wieder rechts, aber bleibt versteckt.
    Das Logo sollte sich dann entsprechend mit verkleinern. Das finde ich aber nicht, wo ich sowas einstellen kann.
    Video zu der Beschreibung hier. https://drive.google.com/file/d/13wYBxtOS0gi3Jlfz3xx97VfmuZ3D2u4h/view?usp=share_link

    Ich fänd, nach wie vor immer noch besser, wenn das Menü 2-zeilig bliebe, so wie vorher. aber die sticky Leiste eben unter der 2. Zeile ist und nicht unter der 1.
    Geht das?

    #1496091

    Hi,

    Thank you for the inquiry.

    Regarding the logo shrinking on smaller screens and the burger menu/search icon overlapping, you can add the following css to Enfold > General Styling > Quick CSS field:

    
    @media only screen and (max-width: 1290px) {
      .responsive #top .logo img {
        max-width: 62%;
      }
    
      #avia-menu {
        margin-right: 0;
        padding-right: 0;
      }
    }
    
    @media only screen and (max-width: 767px) {
      .responsive #top .logo img {
        max-width: 35%;
      }
    }
    

    Adjust the max-width value as needed to fit your logo within the header. Please make sure to purge the cache before testing.

    qVl8kmu.md.png

    Let us know if the issue persists.

    Best regards,
    Ismael

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