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
Hey mulder4301,
Could you post a link to where we can see the elements in question please?
Best regards,
Rikard
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
Thanks it works ;-)
How can I change the height of the header only for mobiles?
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
Thanks for that.
But it doesn’t show any effect … :-/
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
Perfect! Looks fine!
Thank you very much!