Hello,
The logo size as well as the menu look great on Desktop. Please see attached Screenshot “#1 Desktop”.
1. However, the logo looks too large / oversized on Mobile in Portrait Mode. Please see attached Screenshot “#2 Mobile Portrait Mode”. How can I adjust it so it appears a bit smaller and looks more elegant?
2. When putting Mobile to Landscape Mode, the logo size looks good, however the menu doesn’t scale and goes on top of the logo. How is it possible to adjust it? The best solution would be to make the logo a bit smaller to avoid the overlay. How can I achieve this?
Thank you in advance! :)
…
Hi @Mike
Do you possibly have an idea / solution for how to solve for this as well? :)
I’d basically like the logo in the header to display smaller for Mobile.
Hi Team,
Does someone know the CSS for this – how to adapt the logo size in the header (make it a bit smaller)?
Thank you,
Markus
Hi Markus,
Thanks for contacting us!
Please add following code to Quick CSS field in Enfold theme options > General Styling tab
@media only screen and (max-width: 480px) {
.responsive .logo img {
max-width: 75%;
}
}
Best regards,
Yigit
Hi,
To use a custom screen width for the burger menu please see here in our documentation:
@media only screen and (max-width: 890px) {
#top #header .av-main-nav > li.menu-item {
display: none!important;
}
#top #header .av-burger-menu-main {
cursor: pointer;
display: block!important;
}
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Thank you!! :-)