White space on mobile view below slideshow for narrative theme

Hi,

I have a white gap appearing only on mobile view below the slideshow. Is it possible to remove this.

www.yimtee.com pw: yimteeth

Thank you!

@Gus5

can you please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
@media only screen and (max-width: 749px) {
.main-content .shopify-section:first-child {margin-bottom: -50px;}
}
1 Like

Hi @Gus5 ,

You can use @KetanKumar to lessen the space, but if you want to remove the space all the way and make the dots inside the slideshow container you can use this code below.

Find your theme.scss file under Asset folder and paste the code below.

@media only screen and (max-width: 749px){
.slideshow__indicators {
    margin-top: -35px  !important;
    position: absolute  !important;
}
.slideshow__text-container-mobile {
position: absolute !important;
}
}
1 Like

Thank you both! Both solutions worked perfectly

@Gus5

its pleasure to help us