Blog post dates appear in the meta info section of each post. Squarespace 7.1 uses .blog-meta-item--date for the date element. Hiding it is a one-line CSS rule.
You can hide dates on the listing page, individual posts, or both. Target the selectors separately if you want dates visible in one place but not the other.
/* Hide date everywhere */
.blog-meta-item--date {
display: none !important;
}
/* Or hide only on listing page */
.blog-collection .blog-meta-item--date {
display: none !important;
}
/* Or hide only on individual post page */
.blog-item-content .blog-meta-item--date {
display: none !important;
}Explore blog customization in our CSS CheatsheetTry it free →
