Buy me a coffee

Hide a section from Mobile/Tablet/Desktop

#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"]

Hide A Section 01#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;
  }
}

Hide A Section 02#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;
  }
}

Hide A Section 03#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;
  }
}

Hide A Section 04