Make Carousel List visible on Desktop Only

To make a carousel list visible on desktop only on Squarespace, you can follow these.
#1. First, you need to find Carousel ID. In my example, it is:

  • section[data-section-id=“66acf16080609d786aca2dd3”]

image

#2. Next, use this code to Custom CSS box

@media screen and (max-width:767px) {
    section[data-section-id="66acf16080609d786aca2dd3"] {
        display: none !important;
    }
}