How to remove white space between slideshow and text box on Debut theme?

Hi there,

I’m on the Debut theme and struggling to remove the white space between my slideshow and rich text box. I would like the green box to come up to the bottom of the slideshow. Any advice would be greatly appreciated!

https://toast-phl.myshopify.com/

2 Likes

@ToastyDC

Your shop is password protected. Please provide password.

1 Like

gleuch

@ToastyDC

sorry for that issue

how to check because your store password protect can you please share us so i will check and let you know

3 Likes

gleuch

1 Like

@ToastyDC

thanks for it

please add this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
    this code apply for after 5 - 6 second
.main-content .shopify-section:first-child {
padding-bottom: 0;
    margin-bottom: -55px;
}
3 Likes

@ToastyDC

  1. Go to Online Store->Theme->Edit code

  2. Asset->/theme.css ->paste below code at the bottom of the file.

@media only screen and (min-width: 750px){
.index-section {
    padding-top: 0px !important;
}

[class*=index-section--flush]:first-child {
    margin-top: 0px !important;
}

}
1 Like

Thank you for your help! This didnt work.

Hmmm this removed some of the white space but not all

1 Like

@ToastyDC

Please add following css code your css file .

@media only screen and (min-width: 750px){
.template-index .main-content {padding-top: 0px;}
#shopify-section-162845967988890f21.index-section {
    padding-top: 55px;
    padding-bottom: 0px;
}
}
1 Like

@ToastyDC

just add this code

.main-content .shopify-section:first-child {padding-bottom: 0;}
1 Like

that worked! thank you!

1 Like

@ToastyDC

Thanks!

1 Like

Hi, me again,

I changed some things up and I’m wondering if you can now help me remove the padding between the green GET TOASTY and the black copy below it?

Thanks so much!

1 Like

@ToastyDC

Yes, please add this code

div#shopify-section-162938851815bbd035 {
    padding-bottom: 0;
}
1 Like

I’m sorry, that didn’t work.

1 Like

@ToastyDC

can you please mark which padding do you have removed?

1 Like

Yup! Between the green GET TOASTY and the black copy below it.

1 Like

@ToastyDC

thanks for it

where do you have add this css code

1 Like

I added the code you provided at the bottom of theme.css

1 Like