How to Remove "Showing no posts match your query.....show all posts" Result from Blogger?
First log in to your Blogger account
back-up your template Then click Template >> Edit HTML
Chose Proceed to start editing the HTML code.
Cick Expand Widget Templates box
Ctrl F and find the following code
<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>
REPLACE them with
<b:includable id='status-message'> <b:if cond='data:navMessage'> <div> </div> <div style='clear: both;'/> </b:if> </b:includable>
Save template and you are done!