The header logo is cut off in mobile, though it looks good on desktop. A lesser issue, the menu items are too low on mobile. Some CSS already manages header logo and menu button. What is the correction needed to have the full logo visible and the menu items up in the great area on mobile?
Hey Tanja,
This CSS in Quick CSS is causing that to happen:
@media only screen and (max-width: 767px) {
.responsive #top .logo {
height: 66px !important;
width: 100%;
display: flex;
justify-content: center;
}
}
Please try removing or adjusting the height.
Best regards,
Rikard
Thank you, that increases the background height. The logo is still cut off.
Hi,
Thank you for the update.
We adjusted the css code a bit. Please try it again:
@media only screen and (max-width: 767px) {
.responsive #top .logo {
height: 66px !important;
width: 100%;
display: flex;
justify-content: center;
}
.responsive .logo img,
.responsive .logo svg {
margin: 0;
max-height: 66px !important;
}
.responsive #top .av-logo-container .avia-menu {
height: 100%;
margin-top: -30px;
}
}
Best regards,
Ismael
Thank you! This works, with a little tweaking to my preferences.