June 13, 2016

How to Remove Showing Posts With Label in Blogger

Whenever you click on a label on your or someones Blogger blog you will be redirected to a list of posts/articles within that label, directly above the first post is a status message showing "Showing Post with label Example Label" . For me this is somewhat a bit of annoying and untidy, so for whatever reason you have in your pocket I will be teaching you on how to completely remove that status message. It's pretty easy! so let's get started.

 


Step 1. Proceed to EDIT HTML.


Step 2. Find and Remove 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>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>