Logo doesn't scale with device

Hi,

Is there a way to make the logo image scale according to the size of the device?

ckosteopathy.com

As you can see the logo is a bit too large for mobile. Fine on “medium” screen sizes upwards.

Thank you

Hey @Mustashio,

Please add this code in X > Theme Options > CSS.

@media (max-width:510px) {
    .x-brand {
        max-width: 80%;
    }
}

Hope that helps.

1 Like

You Sir! are a scholar and a gentleman!

I will make note of this for future builds.

Thanks very much.

1 Like