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”]
#2. Next, use this code to Custom CSS box
@media screen and (max-width:767px) {
section[data-section-id="66acf16080609d786aca2dd3"] {
display: none !important;
}
}