White space between slide show and text - Brooklyn theme

Hello,

I’m trying to remove the white space between slide show and text on the homepage: golden-pigs.com

Can someone please help? I tried what I found here, but without succes.

Looking forward for your answers.

Kind regards,

Cristi

Hi @Golden_Pigs ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:


ope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

@Golden_Pigs - that space is due to height of the banner has been reduced in your theme.scss.css file on lne 1838, it is made 73%, make it 100%… or add this css to the end of yor theme.scss.css file and check

@media screen and min-width:750px){
.slick-slide{height: 100% !important;}
}