Prestige Theme - How do i make my header space a bit smaller

Website: https://www.femicollective.com/

Password: beghey

Hi everyone, my header is a bit too big for my liking (not the text) but the space for the header should be a bit smaller. How can i do this? See screenshot, Thanks

Hi,

Add below css in theme.css file.

@media screen and (min-width: 641px){
.Header__Wrapper {
    padding: 15px 30px !important;
}

}

Thanks

Hit Like and Accept as Solution

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >base.css and paste this at the bottom of the file:
@media screen and (min-width: 641px){
.Header__Wrapper {
padding: 15px 30px;
}
}

Thanks, that was perfect

Glad to hear.