How can I minimize my Debut theme header height on mobile?

Hello,

My website is on Debut theme.

The height of my header is too big. See below:

How can reduce it?

Meaning reducing white space above and below the logo.

Thanks,

Corto

@coco44 .

Add this at the bottom of your theme.css file

@media only screen and (max-width: 749px){
.site-header__logo {
    margin: 0px !important;
}
}

Do let me know if it works for you.

Try adding the following snippet to theme.css.

.h2.site-header__logo {
  margin: 0px !important;
}

Perfect thank you so much,

@coco44 , You’re welcome.