Brooklyn Theme (MOBILE) Make header smaller

Goodmorning everyone,

I have a question regarding the header of our website. (www.croom-sanitair.nl)
As you can see on mobile the white part below the logo in the header is too big.
Is there a way to make it end just below the logo so it’s smaller?

@sanderdame

  1. Go to Online Store->Theme->Edit code 2. Asset->/theme.scss.liquid ->paste below code at the bottom of the file.
@media screen and (max-width: 768px){
.site-header__logo img {
    max-height: 45px !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}
}
@media screen and (max-width: 600px){
.site-header__logo img {
    max-height: 45px !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}
}

@sanderdame

add this code in theme.scss or theme.css

I’m sorry to say but the logo has only became smaller en the white part still the same, here is the screenshot:

(This is the same for both mentioned answers above)

i think you would like to remove this extra spacing.

Yes exactly but I can’t find any way to do this! Searched everywhere in the code and in the product page.

@sanderdame
Add this code in theme.scss or gem-page.css

@media (max-width: 767px)
{
#r-1634885432805 {
 margin-top: -25px !important;
}
}

PERFECT, IT WORKED! :slightly_smiling_face: