updated and still has the problem
The work around I listed above works great – but would be nice if it wasn’t needed
I’m having the exact same issue – using Chrome the logo stretches when I resize the browser. I’m seeing this with no chrome extensions….
The CSS I’ve found that’s doing it is:
@media only screen and (max-width: 767px)
.responsive .logo a, .responsive .logo img { height: 80px !important; } (plus some other stuff I’ve left out of here)
in layout.css line 2866
In inspect if I uncheck the height of 80 the problem goes away.
I’ve overridden the issue in the custom CSS box:
@media only screen and (max-width: 767px) {
.responsive .logo a , .responsive .logo img{ height:auto !important; } }
@media only screen and (max-width: 767px) {
.responsive .logo { height:auto !important; max-height: 80px !important; } }