Change Header Logo size only for Mobile - Boost Theme

Hi,

The logo on the mobile version of my website is currently too big, but there is only 1 setting in the theme to change its size, which applies to desktop and mobile.
Is there a bit of code I can add that would decrease the size for mobile only?

The website is www.lexandfox.com

The theme is called Boost

Hi @Alistair18 ,

You can customize CSS with this code:

@media screen and (max-width: 768px) {
.store-logo .site-header__logo-image img {
width: 40%!important;
}
}

Hey @Alistair18

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag.

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed