(Squarespace) Remove Slideshow Section thumbnails on Mobile

To remove Slideshow Section thumbnails on Mobile.

First, find Slideshow ID.

In my example, it is: section[data-section-id=“654c4eea033d046d425c6411”]

Next, use this code to Custom CSS box.
If code doesn’t work, you can comment below, message or email me.

@media screen and (max-width:767px) {
section[data-section-id="654c4eea033d046d425c6411"] div.gallery-slideshow-thumbnails {
    display: none !important;
}
}

1 Like