Change Header Logo size only for Mobile - Boost Theme

Solved
Alistair18
Visitor
1 0 0

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

Accepted Solution (1)
Moeed
Shopify Partner
2439 617 736

This is an accepted solution.

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 </body> tag.

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

Capture.JPG

 

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

 

Best Regards,
Moeed

Need a Shopify developer? Chat on WhatsApp


- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications

- Expert in Shopify SEO optimization for higher search rankings.


- Your Coffee Tip , my code - a perfect blend! ❤️

View solution in original post

Replies 2 (2)
Ryo14
Shopify Partner
77 6 32

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;
    }
}
- Was your question answered? Mark it as an Accepted Solution
- Want to modify or custom changes on store contact me.
Email: shopify.xteam@gmail.com, Whatsapp: +84384998762

Moeed
Shopify Partner
2439 617 736

This is an accepted solution.

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 </body> tag.

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

Capture.JPG

 

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

 

Best Regards,
Moeed

Need a Shopify developer? Chat on WhatsApp


- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications

- Expert in Shopify SEO optimization for higher search rankings.


- Your Coffee Tip , my code - a perfect blend! ❤️