Hey there,
I´ve set my header to 50px. On desktop the header appears with a height of 50px.
However, on mobile and tablet the header appears at 82px on mobile and 92px on tablet.
Why is that and how can I change it to 50px?
Cheers
Restube
Hey restube,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width: 990px) {
#top #header_main > .container,
#top #header_main > .container .main_menu .av-main-nav > li > a,
#top #header_main #menu-item-shop .cart_dropdown_link {
height: 50px !important;
line-height: 50px !important;
}
.responsive .logo a {
vertical-align: top;
}
.responsive .logo a img {
height: 50px !important;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Perfect, thanks so much!