Remove/hide Newer/Home/Older post links in blogger

Bloggers default pagination comes with Older, Newer and Home links which can be used to navigate to other pages or posts, but in any case you want to remove all those links from your blog than we have a simply hiding CSS trick for that which will hide all those links from your blogs homepage and post page. Removing these links therefore makes sense and may make your Blog less cluttered and unsightly. Do note that Blogger displays 20 posts on the page. If you have, more than 20 posts, it will not displayed on your homepage.

How to remove/hide Newer post or older post links in blogger

  • Go to Blogger Dashboard 
  • Click on DropDown Menu and select Template
  • Backup your Template before making any changes to your blog
  • Now Click on Edit HTML --> Proceed --> Expand Widget Templates
  • Press Ctrl + F and search the code shown below


]]></b:skin>


  • Now Paste the Code Shown Below just above/before it


#blog-pager-newer-link {
display: none;
}
#blog-pager-older-link {
display: none;
}
#blog-pager {
display: none;
}

  • Now save your template

Like it? Share it.

No Comments

Click to Add a New Comment

  • If you're asking a question click on Subscribe By Email link, on the comment form, to be notified of replies.
  • Do NOT add links to the body of your comment as they will not be published.
  • Only the comments posted in ENGLISH will be approved.
  • If you have a problem check first the comments , maybe you will find the solution there.