Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1442519

    Guten Morgen Enfold-Team,
    ich würde gerne bei mobile devices die Navigation zentriert unter dem Logo angezeigt haben. Quasi: Logo oben zentriert, drunter die Navigation in der zentriert. Weil so wie es jetzt ist, ist das Logo zu groß und schiebt sich über das Burgermenü, Suchfunktion und Profil-Icon.

    Vielen Dank für die Unterstützung!

    AS

    #1442531

    Hey mulder4301,

    Could you post a link to where we can see the elements in question please?

    Best regards,
    Rikard

    #1442534
    This reply has been marked as private.
    #1442573

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all .main_menu {
        position: initial;
        display: table;
        margin: 0 auto;
      }
      .responsive #top .logo {
        width: 100%;
      }
      .responsive #top .logo img {
        display: table;
        margin: 0 auto;
      }
    }

    Best regards,
    Rikard

    #1442587

    Thanks it works ;-)

    How can I change the height of the header only for mobiles?

    #1442612

    Hi,

    Please try this CSS as well:

    @media only screen and (max-width: 767px) {
    #menu-item-shop a, #avia-menu a {
      height: auto;
      line-height: 50px;
    }
    }

    Best regards,
    Rikard

    #1442636

    Thanks for that.
    But it doesn’t show any effect … :-/

    #1442685

    Hi,

    Please try this instead:

    
    @media only screen and (max-width: 767px) {
    #menu-item-shop a, #avia-menu a {
      height: auto !important;
      line-height: 50px !important;
    }
    }

    Best regards,
    Rikard

    #1442715

    Perfect! Looks fine!
    Thank you very much!

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Navigation unter das Logo bei Mobil Device’ is closed to new replies.