White space between title and slideshow mobile

Hi,

On my homepage i have a title above my slideshow and it looks perfect on desktop, but on mobile there is a lot of whitspace below the title. Can someone help me? I’m using brooklyn Theme

1 Like

Hello There,

Please share your store password.
So that I will check and let you know the exact solution here.

@Ellen13 ,

share the URL please

https://www.rosieantwerp.com/

1 Like

Password: shopify123

1 Like

@Ellen13 ,

.custom__item.one-whole.align--center {
    margin-bottom: 0;
}
.wrapper {
    padding-bottom: 0;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

1 Like

Thank you so much!

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
@media screen and (max-width: 749px){
div#shopify-section-164602528138f5a0d6 .wrapper {
padding-bottom: 0;
}

div#shopify-section-164602528138f5a0d6 .wrapper .custom__item,
#shopify-section-164602528138f5a0d6 .custom__item-inner .rte,
#shopify-section-164602528138f5a0d6 .custom__item-inner .rte>div {
margin-bottom: 0;
}
}
1 Like

This worked perfectly as well! Thank you

Hi @Ellen13 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css->paste below code at the bottom of the file:
@media screen and (max-width: 749px){
 #shopify-section-164602528138f5a0d6 .wrapper .custom__item,
 #shopify-section-164602528138f5a0d6 .custom__item-inner .rte,
 #shopify-section-164602528138f5a0d6 .custom__item-inner .rte>div {
   margin-bottom: 0;
 }
 #shopify-section-164602528138f5a0d6 .wrapper {
   padding-bottom: 0;
 }
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Best regards.