By default when you click on a Blogger label and view posts in that label, there you will see a message on the top of that page. That message “Showing Posts with Label” will just tell you that its showing you posts from that specific label of blogger blog. Normally its not very necessary to have that message displayed. So many blogger blog users will try to remove that message. So, if you also want to remove this message from the label page, then follow this tutorial. This Blogger tutorial will simple help you to remove “Showing posts with Label” message from the label pages. This tutorial is simply based on two steps in which you will be finding a piece of code and then replacing it with another code. So, just follow these steps to remove “Showing Posts with label” message from your Blogger blog.
![]()
Remove “Showing Posts with Label” Message
1. Go to Blogger Dashboard >> Template >> [Backup Template] >> Edit HTML >> Check the “Expand Widget Template” box >> Find [Ctrl+F] this code into your template code:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<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> |
2. Now replace that code with the following code:
|
1 2 3 4 5 6 7 8 9 |
<b:includable id='status-message'> <b:if cond='data:navMessage'> <div> </div> <div style='clear: both;'/> </b:if> </b:includable> |
That’s it. Save the Template and check your blog for changes. Now you will not see any Message like before. This was a simple Blogger tutorial to teach you How to Remove “Showing Posts with Label” message in Blogger blogs. I hope this tutorial will help you with your blog modification.
Second Method:
There is another method to make that message hide on your blogger blog. It is of using CSS. By inserting a simple CSS code to your blog template, that message “Showing Posts with label” will be hidden on your pages. If you are using default blogger templates, then this method can work for you perfectly.
1. Go to Blogger >> Template >> Customize >> Advanced >> Add CSS >> Paste following code into the box of Add CSS:
|
1 2 3 |
.status-msg-wrap {display:none;} |
2. Save and preview your blog for changes. I hope this method will work for you. If this method don’t work for you, then please share your blog url in comments so I can tell you the way to remove it specifically for your blog. If you know little bit about CSS then you can do this by yourself. Just get the class of that Message box and make it hidden by using the CSS code, as I have given above. You just need to replace status-msg-wrap with your class name.

Pingback: Remove “Showing Posts with label” Message in Blogger – Blogger « TaimoorSultan
Thanks
Hi, your methode don’t work on blogger 2013!!
I have tried it again and it works well. Which template are you using?
Alternatively you can add a css code in order to hide it. Please tell me your blog url, so I can tell you actually what to do.