How can I adjust the mobile header height on my website?

Hi Shopify community,

The question I have is about changing the height of my navigation bar on mobile.

How can I decrease this height? Could you help me out here?

Website: twillostory.com

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
div#header {
padding: 0;
}
div#header h1.header__logo-wrapper {
margin: 0;
padding: 5px 0;
}
1 Like