How can I make my banner slide responsive without white space?

Good day!

I have a question on how to delete that div and just make my banner slide responsive without any white space, thanks!

1 Like

HI @Foxis98

If you do not have text included, just images, make sure to uncheck the “show container on desktop.” See image below

Since in Dawn theme, even the text section is empty. It still has padding. The code below should fix it.

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
  2. Go to Asset folder and open the base.css file
  3. At very end of the code, add the code below
.slideshow__text-wrapper.banner__content.banner--desktop-transparent {
    display: none;
}
1 Like