Blogger Tips
How to remove/delete labels from Blogger posts
Many bloggers might find labels below posts (or post titles) unnecessary, as long as they are already in the blog's sidebar. So, this tutorial will show you how to remove them manually from the Template's HTML. To hide labels from the blogger post footer (or below post title), we could simply uncheck the "Labels" option; however, this setting might not work properly in some custom templates and then, we'll have to remove the code from our template.
How we are going to do this?
Hide labels in Blogger Posts using CSS
Step 1. Log in to your Blogger account > head to the 'Template' tab > hit the 'Edit HTML' button:
Step 2. Click anywhere inside the code area and search by using the CTRL + F keys the tag below (hit Enter to find it):
</head>
Step 3. Just above the
</head> tag, add the following style:
<style>
.post-labels {
display: none;
}
</style>
Step 4. Click the 'Save Template' button to save the changes and view your blog. The labels below the posts should be hidden now.
-
Show Recent Posts With Thumbnails For Particular Label Or Category In Blogger
Sometimes we want to have everything organized, so that our readers can find topics of interest more easily. To accomplish this, instead of putting a widget with the latest posts, we can put together the latest entries sorted by category, so that we'll...
-
Display Post Author, Date, Labels And Comments With Icons Below Post Titles
This tutorial will show you how to add more information in the Blogger posts like author name, display the post date, post labels and comment count links. How does this work? The comment links will display the 'Be the first to comment!' text for...
-
Add A Simple Drop Down Menu To Blogger
In today's Blogger tutorial I show you how to add a simple drop down menu widget sometimes called a select box to the sidebar of your Blogger blog (Blogspot blog). If you want to add lots of links to your Blogger blog but are worried about the amount...
-
Add A Categories Section To A Blogger Blog (blogspot Blog)
Blogspot blogs at Blogger.com have no categories only labels. This Blogger tutorial will show you how to manually create categories in Blogger from your existing labels so that all the articles listed under a particular label will be displayed. While...
-
How To Remove The Blogger Navbar
It is easy to hide the Blogger Navbar and it only takes a couple of minutes to do this simple Blogger trick. Most people dislike the Blogger Navbar and want to remove it because it looks unprofessional and it encourages readers to leave your blog by clicking...
Blogger Tips