Hide tags on a Squarespace blog post
Squarespace is a great blogging platform and I recommend that almost all my clients add a blog to their websites.
Blogs are great ways of positioning yourself as an industry expert, driving more traffic to your website and generating those all-important leads.
When you publish a blog post it’s always a good idea to add tags, detailing what your post is about and directing readers to your content.
The problem is though that Squarespace displays all of your tags at the bottom of your posts and honestly? It looks messy.
To hide them, you need to use a simple bit of code. Keep reading to find out what code you need and how to add it to your Squarespace site.
Navigate to Website > Website Tools > Custom CSS and add the below code:
.blog-meta-item--tags {
display: none;
}
This code tells Squarespace exactly what you're targeting, the tags section on blog posts, and to hide it from display. Simple.