I am having the same issue, there’s some code which sets the height to 70px, when the screen size is reduced to mobile it keeps the logo at 70px high but reduces the width?
#logo img { height: 70px; } when the logo is 174px wide this is OK.
However it brings in:
@media (max-width: 980px)
img.standard {
width: 100px!important;
padding-top: 10px;
}
But the “height: 70px;” stays, distorting the logo.
John