You can remove the "Showing posts with Label. Show all posts" message in two ways.
Option 1: Obliterate the code:
1 Edit your template in the usual way
2 Find the following text
<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>
<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>
(If you delete the text and do not put the replacement in, then Blogger may add that section again later.)
Option 2: Hiding the message using CSS
(This approach is less risky because you do not need to edit your template, and because it's easier to change later. But some people have reported that on their template, it has not worked.).status-msg-wrap,
.status-msg-body {
display: none;
}
How to change the format of the "Showing posts with LABEL" message
Some people don't mind the actual "Showing posts with Label. Show all posts" message. But they want to format it in a way that suits their blog's layout and colour scheme.This is easily done, by adding some extra CSS rules to your template in the usual way.
To change the format of the message text, use rules like this:
.status-msg-body {text-align: left;line-height: 1.4;font-weight: bold;color: red;padding: 0.5em 0.3em;width: 100%;}
.status-msg-wrap {
width: 100%;
margin: 0 auto; /* keep the auto statement if the width is less than 100%, so the box is centered */
position: relative;
}
There is a wide range of options - check with CSS reference guides for the options. You may need to carry out some experiments with your template and how it looks with various options to decide on the best combination for your blog.
How to change the "Showing posts with LABEL" message
There are several ways that you can change the text in the "Showing posts with Label. Show all posts" message.
Option 1: Just replace it with some text
To show a sentence of your own instead of Blogger's standard message,
1 Edit your template in the usual way2 Find the following text
<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>
3 Replace the line in bold (ie <data:navMessage/> ) with your own words.
For example, you might say
<b:includable id='status-message'><b:if cond='data:navMessage'><div class='status-msg-wrap'><div class='status-msg-body'>Posts in this category include (use the Older Posts link to see previous posts):</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>
To show the searched-for label value in your message, you need to use the <data:blog.searchLabel/> tag. For example, you might say
<b:includable id='status-message'>Note: if you are going to use this tag, then you need to choose your label values very carefully so that they all make sense. For example, in one blog I have some posts labelled "For quiz organizers" and others labelled "Finance", "Organisation" etc. There is no way that I can write a sentence including the labels that makes sense for both of these.
<b:if cond='data:navMessage'>
<div class='status-msg-wrap'>
<div class='status-msg-body'>
Posts about <data:blog.searchLabel/> include (use the Older Posts link to see previous posts):
</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>
"This Content Sponsored by Buymote Shopping app
BuyMote E-Shopping Application is One of the Online Shopping App
Now Available on Play Store & App Store (Buymote E-Shopping)
Click Below Link and Install Application: https://buymote.shop/links/0f5993744a9213079a6b53e8
Sponsor Content: #buymote #buymoteeshopping #buymoteonline #buymoteshopping #buymoteapplication"
===========================================================================