Craft theme - How do I change the logo size

Solved

Craft theme - How do I change the logo size

TaskerandShaw
Excursionist
40 0 12

I'm looking to change the maximum logo width on my craft theme store, max is 300px and as it's a wide logo i'd like it to be around 500px on desktop but still responsive on mobile devices.

 

My domain is taskerandshaw.com

 

Thanks in advance for your help.

 

Screenshot 2025-01-05 at 14.11.42.png

Accepted Solution (1)

suyash1
Shopify Partner
10490 1292 1653

This is an accepted solution.

@TaskerandShaw please add this css to the very end of your base.css file and check,
Shopify Admin -> Online Store ->Theme -> Edit code -> base.css

 

@media (min-width: 991px) {
.header__heading-logo {max-width: 500px !important;}
}
Support me | To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.

View solution in original post

Replies 2 (2)

suyash1
Shopify Partner
10490 1292 1653

This is an accepted solution.

@TaskerandShaw please add this css to the very end of your base.css file and check,
Shopify Admin -> Online Store ->Theme -> Edit code -> base.css

 

@media (min-width: 991px) {
.header__heading-logo {max-width: 500px !important;}
}
Support me | To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
TaskerandShaw
Excursionist
40 0 12

perfect - thank you.