Craft theme - How do I change the logo size

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.

1 Like

@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;}
}

perfect - thank you.