Connecting Dots Of Knowledge

Tuesday, January 27, 2015

How to Remove Showing Posts With Label in Blogger

No comments :
Blogging Tips
For any default Blogger layout, the "Showing posts with label" message shows up above the posts each time you click on a label link. As it's a useless and irritating message, many people like to have it removed. If that is your wish.
screen shot of showing post with label

Just follow the steps given below:

Step 1. Go to Dashboard << Template<< Edit HTML


edit html screenshot

Step 2. Click anywhere inside the template code, then search - using CTRL+F - this code:
<b:includable id='status-message'>
Step 3. After you found it, click on the sideways arrow next to it, to expand the rest of the code.



Step 4. Below is this code that you need to remove - along with the first one, as well:
<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>
remove this code screenshot

Step 5. Replace it with this one:
<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>
Step 6. Save the Template and enjoy..!!! 

No comments :

Post a Comment