When your blog reader clicks any of your lablel, then they see a message telling them that they are now viewing all of your published posts that are categorised under that label.
These messages looks very bad when you are using label as your navigation bar/menu. So to remove it we will do the following tricks.
But before that always backup your template which i say again n again in every topic. This is to make sure that if something goes wrong with codes then you can easily restore your old template to keep your blog working.
Step 1
Go to blogger dashboard menu. Select template, then Edit HTML. This will open HTML editor.
Step 2
Click on anywhere in the edit box then press CTRL+F to activate search box.
If you can see the three dot (...) then click on it to expand the code further or in another way click on the black arrow on the left to expand this code.
You Find this article helpful? Post your comment below.
Step 3
Find the below code :
<b:includable id='status-message'> ... </b:includable>
If you can see the three dot (...) then click on it to expand the code further or in another way click on the black arrow on the left to expand this code.
<b:includable id='status-message'>Replace it with the code mentioned below :
<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>
<b:includable id='status-message'>Save the template and you are done. Check your blog to confirm it.
<b:if cond='data:navMessage'>
<div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>
You Find this article helpful? Post your comment below.












