Hiding Elements on Mobile View in Squarespace
Hide elements on mobile view using this CSS:
}
Copy Code Example
/* Hide Section on Mobile View */
@media screen and (max-width: 900px) {
section[data-section-id="ENTER SECTION ID NUMBER HERE"] {
display: none !important;
}
}