How to make the header smaller in height / Impulsive Theme

Hello, I would like to make the header’s height smaller without affecting the logo.

This is my website: https://deluxcosmetics.com/

Thank you in advance!

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css.liquid and paste this at the bottom of the file:
.site-header {padding: 2px 0;}
div#StickyHeaderWrap {
height: auto!important;
}
1 Like

Thank you @ZestardTech

It worked perfectly!

Is it possible to make it even smaller?

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css.liquid and paste this at the bottom of the file:
.site-header {
padding: 0px 0;
}
div#StickyHeaderWrap {
height: auto!important;
}