Home >>

Remove 'Showing newest posts with label' message


When we click on a label or do a search in a blogger blog we get a list of posts using that label or search term. Above the list of posts you will see a small message and link like this :

Showing newest posts with label

"Showing newest posts with label .... Show older posts"

How to Remove 'Showing newest posts with label' message?
  1. Log into your Blogger account and go to Dashboard > Design > Edit HTML.
  2. Check the Expand Widget Templates check box.
  3. Find the following Code in your blog HTML.
    Tips: Use Ctrl+F for quick search.
    <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>
  4. Replace that code with the code below :
    <b:includable id='status-message'>
    <b:if cond='data:navMessage'>
    <div>
    </div>
    <div style='clear: both;'/>
    </b:if>
    </b:includable>
  5. Then Save Template and you're one.