[ Read More ]

Remove/Hide
In almost all Blogger Templates, you can find the Newer Post – Home – Older PostLinks below the blog posts. If you want to remove or hide these links, just do the following simple steps:
  • Go to Blogger Layout page and click Edit HTML link
  • Then Search(Ctrl+F) your template to find the following codes:
    #blog-pager-newer-link {
    float: left;
    }
    #blog-pager-older-link {
    float: right;
    }
    #blog-pager {
    text-align: center;
    }
  • Now Replace the above code as given below:
    #blog-pager-newer-link {
    float: left;
    display: none;
    }
    #blog-pager-older-link {
    float: right;
    display: none;
    }
    #blog-pager {
    text-align: center;
    display: none;
    }
  • Save the Template. Finished!




Hi annie,I was just just wondering if there is a code on how to remove the feed link at the bottom of a post, the one which says Post (Atom). Without affecting anything.

  1. Go to dashboard/ template/ edit HTML
  2. Click the 'Expand Widgets Templates' box
  3. Find:

<b:if cond='data:blog.pageType != "item"'> <!-- Blog feed links -->
<b:if cond='data:feedLinks'>
<div class='blog-feeds'>
<b:include data='feedLinks' name='feedLinksBody'/>
</div>
</b:if>

Remove this line:
<b:include data='feedLinks' name='feedLinksBody'/>
That should remove Posts (Atom).






http://services.nexodyne.com/email/


[ Read More ]


[ Read More ]