Reduce gap between logo and nav menu- dawn theme

hello, how to reduce gap between brand logo and nav menu as in provided image below? any help please?

i want to reduce gap where red dot line is? url- deshoeshop .com

ok, thanks. but how to do that?

I just reviewed your site and https://deshoeshop.com/ and noticed that the header is now updated. Do you still need to decrease the gap?

Hi @DSS5

You can do that by adding this CSS code at the bottom of your base.css file in Online store > Themes > Edit code > Assets

.header__heading-link { padding: 0px !important;  }
.header { padding-bottom: 0px !important; }

no still working on it. the site you checked is the one which is pulished. i am editing duplicate copy of it and below is the screen shot. need less gab between logo and nav menu. thanks

Please send me preview link so I can give you the code

Also, make sure you added code in base.css file of your copy theme

Hello @DSS5 :waving_hand:

Inside Shopify Admin, you can go to Edit theme code, open file and add this code at the bottom

@media screen and (min-width: 990px) {
    .header {
        padding-top: 4px;
        padding-bottom: 4px;
    }
}

The resullt

Hope it helps!