(Squarespace) Hide Event Excerpt on Mobile

To hide Event Excerpt on Mobile only, you can use this code to Website > Website Tools > Custom CSS.

/* hide event excerpt on mobile */
@media screen and (max-width: 767px) {
    .eventlist-description, .eventlist-excerpt {
        display:none;
    }
}

1 Like