All types of Tips and tricks regarding to Blogging adding coustom widgets in blog and many More

Saturday, December 14, 2013

How to remove showing Posts With label in any post?
How to remove showing Posts With label in any post?

Follow the Procedure Below

For any default Blogger layout, the "Showing Post with Label" message shows up above the posts whenever you click on a label link. As it's a pretty useless and annoying message, many people like to have it removed. If that is your wish, just follow the tutorial below:


Step 1. Go to Dashboard - Template
 Step 2. Click on Edit HTML

Step 3. Click somewhere inside the template code, then search - using CTRL+F - this code:

<b:includable id='status-message'>

After you found it, click on the sideways arrow next to it, to expand the rest of the code.

Screenshot:

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>

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. Now view your blog and click on some label....there should be no box anymore.

0 comments:

Post a Comment