Removing White Section Space on Debut Theme

Hello, I need help removing the white space between sections on the debut theme.

None of the codes I’ve seen already posted worked.

www.avmfashion.com

2 Likes

@avmfashion

Please add the following code at the bottom of your assets/theme.css file.

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

Hope this works.

Thanks!

@avmfashion

Please add this for mobile.

@media only screen and (max-width: 749px){
.index-section {
    padding-top: 10px;
    padding-bottom: 10px;
}
}

@avmfashion

sorry for that issue can you please try this

  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
.index-section {
    padding-top: 5px;
    padding-bottom: 5px;
}
2 Likes

Please follow the steps:

  • Step 1: Go to Online store > Themes > Actions > Edit code.
  • Step 2: Go to Assets > theme.css and paste this at the bottom of the file:
    .index-section {
    padding-top: 0px;
    padding-bottom: 0px;
    }

It worked thank you!

1 Like

@avmfashion

it’s my pleasure to help us