Removing "Showing post with label...show all posts" (Version 1)
Step 1. Go to BloggerDashboard >> Template >> Edit HTML (always back-up your template)
Step 2. Click anywhere inside the template code, then search - using CTRL+F - and find the code below:
<b:includable id='status-message'>Step 3. After you have found it, click on the sideways arrow before to it, to expand the rest of the code.
Step 4. Below is this code that you need to remove,
<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 5. Remove all that set of code and replace it with the code below,
<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>
Step 6. Save your template and you're done. Enjoy! : >)
Removing "Showing post with label...show all posts" (Version 2)
Here is another way of removing it from your blog using only a simple css on it. Please follow the steps below:
Step 1. From your Blogger Dashboard, go to Template and click Edit HTML.
Step 2. Search the code below
]]></b:skin>
Step 3. Just above the code in step 3, add the css below,
.status-msg-wrap{Step 4. Save your template and say Bravo!
display:none;
}
No comments:
Post a Comment