I’m using a logo which is 92px high, but am displaying it at 46px (half-height) so it’s sharper on mobile devices.
In the theme settings under ‘Logo Options’ I have the logo set to max-height of 46px, with padding of 10px above and below. With these settings, the header was displaying at 66px high and everything worked nicely.
Now, after the v1.66 update, the theme seems to be ignoring the logo max-height setting. What happens now is the logo gets scaled to the full height of the header at 66px with no padding above or below the logo.
I did some snooping in the sf-custom-styles.php file and found what I think is a bug.
At line 896 there is this code:
echo '.full-center #logo.has-img a > img {max-height: '.$header_height.';}';
I think that header_height variable is wrong, so I changed it to:
echo '.full-center #logo.has-img a > img {max-height: '.$logo_height.';}';
And now it works perfectly, just like it did before.
Is that a bug?