Introduction
By default, Squarespace includes all of the tags you include as metadata in the bottom of your blog posts. And while Squarespace doesn’t give you an option in the admin controls to hide those tags, you can use a very small bit of custom code to hide tags on your Squarespace blog. With that being said, the code snippet is different depending on whether you’re using a Squarespace 7.0 or a Squarespace 7.1 site. I’ll cover both in this article.
Some of the images associated with the steps are included inline below. All images associated with these steps can be seen in the embedded YouTube video. Also, please note that you’re not able to leave a comment directly on this article. If you have a question or feedback, please leave it on the YouTube video.
Steps to Hide Squarespace Blog Tags
- Open your web browser and navigate to your Squarespace account page, and then click the site you want to hide blog tags on. You’ll land on the home page for that site.
- Click “Design” in the menu on the left side of the screen. The Design screen is displayed.
- Click “Custom CSS.” The Custom CSS screen is shown.
- If you’re using a Squarespace 7.0 site, you’ll want to enter the following code in the text entry area.
blog-item-tags{
display:none;
}
Alternatively, if you’re using a Squarespace 7.1 site, you’ll need to enter the following code in the text entry area.
.blog-meta-item--tags
{ display: none;
}
After entering the code click “Save” at the top of the screen. The change will be applied automatically, and you’ll no longer see tags at the bottom of your Squarespace blog posts.