(Squarespace) How to hide all blog posts on blog overview page

To hide all blog posts on blog overview page, we can use this code to Custom CSS box.

section:has(.blog-item) {
    display: none;
}

1 Like