Removing text & text box from Debut slide show

Hello, I am wondering if anyone knows how to remove all text, boxes and dots on the Debut slide show so it’s just the images rotating?
Thank you

1 Like

Hi there,

You can remove the text by removing the Heading and Sub-Headings from each of the slides and you can remove the slider controls by adding some simple CSS to your theme, something like this

.slick-initialized+.slideshow__controls {
    display: none;
}

@Prueprue

Please share your store URL.

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:
    .slideshow__controls,
    .slideshow__text-wrap{
    display: none !important;
    }

hello @Prueprue

Please provide website url and if your store is password protected then also provide password So I will check and provide a solution here.