Blogspot tips and tricks : Today i will show you how to remove “showing post with label” box in blogger blogs, this weird box appear when you click on any label, we know that sometimes it’s useful to get this link inside your blog but it’s annoying somehow, now lets get into the topic of removing “Show post with label” in blogger/blogspot blogs.
How To Remove Showing Post With Label in Blogger Blogs
Remove Showing Post With Label in Blogger Blogs Steps
Step 1: Navigate to Template > Edit HTML and click to Proceed.
Step 2: Look for the code
<b:includable id='status-message'>
and Delete this code :
<b:includable id='status-message'> <b:if cond='data:navMessage'> <div class='status-msg-wrap'> <div class='status-msg-body'> <data:navMessage/> </div> <div class='status-msg-border'> <div class='status-msg-bg'> <div class='status-msg-hidden'><data:navMessage/></div> </div> </div> </div> <div style='clear: both;'/> </b:if> </b:includable>
Step 3 : Replace it with this code :
<b:includable id='status-message'> <b:if cond='data:navMessage'> <div style='clear: both;'/> </b:if> </b:includable>
Now you are done ;)