How to Remove Labels From Blogger Post

In google blogger, Categories are named Labels whereas in wordpress it called categoreis. Managing Labels in goole blogger isn't as straightforward as in wordpress.

when blogger apply a new template, many blogger find Labels below posts unnecessary, as these labels are already in thier blog's sidebar. so today i will show you how to remove them manually from the Templates'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. So we have to remove the code from our template.


Here are some steps to follow carefully.


Hide Labels Using CSS Code

Step 1.  Log in to your Blogger account > Click On Template Tab > Hit the 'Edit HTML' button




Step 2. Now search for this code by using CTRL + F

</head>


Step 3.  Just above the </head> tag, put the following code

<style>
.post-labels {
display: none;
}
</style>


Step 4.  Click the 'Save Template' button to save the changes and view your blog. its done