#1. Install Squarespace ID Finder to find the ID of the Section you want to hide
In my example, we have:
section[data-section-id="666a4ae7e23e2617b7e6f4ed"]
#2. Use this code to hide section on Desktop:
/* Hide section on Desktop */
@media screen and (min-width:992px) {
section[data-section-id="666a4ae7e23e2617b7e6f4ed"] {
display: none !important;
}
}
#3. Use this code to hide section on Tablet:
/* Hide section on tablet */
@media screen and (max-width:991px) and (min-width:768px) {
section[data-section-id="666a4ae7e23e2617b7e6f4ed"] {
display: none !important;
}
}
#4. Use this code to hide section on Mobile:
/* Hide section on mobile */
@media screen and (max-width:767px) {
section[data-section-id="666a4ae7e23e2617b7e6f4ed"] {
display: none !important;
}
}
