Hi
How can I reduce the size of the mobile header and logo? Comes across quite big on screen…
Hey brenmcc1,
Add this to quick css and adjust the number to whatever you need:
@media only screen and (max-width: 767px){
.responsive .logo img {
max-width:20%!important;
}
.responsive #header_main .container {
height:70px!important;
}
}
Best regards,
Jordan Shannon
Thanks, tried this but it only seems to adjust the container. The burger menu doesn’t get any smaller?
Hi,
It should have adjusted the logo image as well. Add this updated code to target the menu as well:
@media only screen and (max-width: 767px){
.responsive .logo img {
max-width:20%!important;
}
#header{
height:70px!important;
}
.av-hamburger-box{
height:30px!important;
width:20px!important;
}
}
Best regards,
Jordan Shannon
