I have a fairly small logo on this website but it still runs into the menu on mobile devices in portrait mode. Is there an easy way to scale it down for iPhones?
Thanks!
-m
Hi squarelight!
Try adding this code to custom.css:
@media only screen and (max-width:479px) {
.responsive .logo img {
width: 150px;
height: auto !important;
padding-top: 15px;
}
}
Cheers!
Arvish