How can I increase the size of my logo on mobile only. I like the placement but need the logo larger.
You can either add this code in the Custom CSS option of the Header from theme editor.
@media screen and (max-width: 767px) {
.header-logo__image {
height: 60px !important;
width: 130px !important;
}
}
OR
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above
</body>tag
<style>
@media screen and (max-width: 767px) {
.header-logo__image {
height: 60px !important;
width: 130px !important;
}
}
</style>
RESULT:
Hope that helps! If it did, a Like and Marking it as Solution goes a long way and helps others find the fix faster too.
Best,
Moeed

