Friday, November 29, 2024

How to Remove “Showing posts with label.. show all posts” from Blogger Template

 

How to remove “Showing posts with label.. show all posts” from Blogger Template


Code:

Step 1:

<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 cond='data:blog.pageType == &quot;error_page&quot;'>

Need to Change to below code:
<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>

Step 2:

]]></b:skin>

.status-msg-wrap { display: none; }  or 

Step 3:

.status-msg-wrap { display: none; }

.queryMessage { display: none; }

Coding:


Paste this Coding in the below mentioned place:

.status-msg-wrap { display: none; }

.queryMessage { display: none; }


No comments:

Post a Comment

Html Coding for Blinking Text in Blog

 Sure! Here's a simple way to make text blink in an HTML blog using CSS (since the old <blink> tag is deprecated and not support...