Hi,
the logo on albertcon.ch is normal, but on mobile the width is cut by the menu icon.
How can I make sure that the size of the logo adjust to the mobile size.
Thanks,
S
Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 480px) {
.responsive .logo img {
width: 200px;
height: auto !important;
top: 10px;
}
}
Cheers!
Josue