Increase size of logo on mobile version

How can I increase the size of my logo on mobile only. I like the placement but need the logo larger.

Hey @HyperactiveDesigns

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:

  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: 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