Welcome to CodeCrew Infotech

shape shape
Shape Shape Shape Shape
Blog

How to Make Your Logo Bigger With Different Shopify Themes

In Shopify, you can make the logo bigger but here the main problem is that your width size is smaller that is why you set your logo as per your theme size and if you make your logo bigger than your site it can directly slow down your page loading speed also overlap some other header elements.

before your logo make bigger check your header width if there is extra space or not. 

Here we show you how to make your logo bigger with different Shopify themes.

Note that different themes have a different CSS file 

you can also change the size of the logo according to your requirements here we provide the 400px you can change as per your requirements.

Debut Theme:

File named:- theme.css.liquid or theme.scss.liquid.

Desktop version:-

 

.site-header__logo-image img {

    max-width: 400px !important;

    width: 400px;

  }

 

Mobile version:-

 

@media only screen and (max-width: 749px) {

  .site-header__logo-image img {

    max-width: 400px !important;

    width: 400px;

  }

}

 

Minimal theme:

File name:- theme.scss.liquid 

Desktop version:-

 

.site-header__logo .logo__image-wrapper {

 max-width: 555px;

}

 

Mobile version:-

 

@media only screen and (max-width: 749px) {

  .site-header__logo .logo__image-wrapper {

    max-width: 55px;

  }

}

 

Narrative Theme:

File name:- theme.css.liquid

Desktop version:-

 

.site-header__logo-image {

 width: 500px;

 height: auto !important;

}

@media only screen and (max-width: 749px) {

 .site-header__logo-image {

   max-height: none;

 }

}

 

Mobile version:-

 

@media only screen and (max-width: 749px) {

  .site-header__logo-image {

    width: 500px;

  }

}

 

Then, you should open the header.liquid file to find

{%- capture image_size %}x{{ section.settings.logo_max_height }}{% endcapture -%}

and replace it with

{% assign image_size = '&quotoriginal&quot' %}

 

Supply Theme:

File name:- theme.scss.liquid 

Desktop version:-

 

.header-logo .header-logo__image, .header-logo__image img {

  width: 500px !important;

  max-width: 500px !important;

}

 

Mobile version:-

 

@media only screen and (max-width: 749px) {

  .header-logo .header-logo__image, .header-logo__image img {

    width: 500px !important;

    max-width: 500px !important;

  }

}

 

Venture Theme:

File named:-  theme.scss.liquid

Desktop version:-

 

.site-header__logo img {

  max-width: 500px !important;

  width: 500px;

}

 

Mobile version:-

 

@media only screen and (max-width: 749px) {

  .site-header__logo img {

    max-width: 500px !important;

    width: 500px;

  }

}

 

Simple Theme:

File name:- theme.scss.liquid

Desktop version:-

 

.site-header #HeaderLogoWrapper {

  max-width: 500px !important;

}

 

Mobile version:-

 

@media only screen and (max-width: 749px) {

  .site-header #HeaderLogoWrapper {

    max-width: 500px !important;

  }

}

 

Express Theme:

File name:- theme.min.scss

Desktop version:-

 

.header__logo-image {

  max-width: 500px !important;

  width: 500px;

}

 

Mobile version:-

 

@media only screen and (max-width: 749px) {

  .header__logo-image {

    max-width: 500px !important;

    width: 500px;

  }

}

 

Then, you also have to edit the file named ‘header.liquid’.

{% capture image_size %}{{ section.settings.logo_max_width }}x{% endcapture %}

and replace this code.

{% assign image_size = '&quotoriginal&quot' %}

 

Boundless Theme:

File name:- theme.scss.liquid

Desktop version:-

 

.site-header__logo img {

  max-width: 500px !important;

  width: 500px;

  max-height: none;

}

 

Mobile version:-

 

@media only screen and (max-width: 749px) {

  .site-header__logo img {

    max-width: 500px !important;

    width: 500px;

    max-height: none;

  }

}