Skip to content
All Answers
Blog

How do I hide the date on blog posts in Squarespace?

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 →

Related Questions

Blog

How do I add a sidebar to my Squarespace blog?

Blog

How do I change the blog post title size in Squarespace?

Blog

How do I style blog category tags in Squarespace?

Blog

How do I style the Read More link on blog posts in Squarespace?

A little over your head?

No shame — this stuff is hard. Let the pros handle it.

Long Drive MarketingTalk to Long Drive Marketing →