Delete "Newer Posts" and "Older Posts" Links from Blogger blog

Today, I will tell you how to delete or remove or hide "Newer Posts" and "Older Posts" links from the bottom of the posts on blogger.com blog. If you want to show your blog like a website then you might looking for this kind of blogger.com blog hack. This hack is very easy to implement. Just add a one line and your desire will comes true.

Log in to your blogger dashboard. Go directly to Design> Edit HTML and search for the text below:
#blog-pager-newer-link {
float: left;
}

#blog-pager-older-link {
float: right;
}

#blog-pager {
text-align: center;
}
Now change a little on the above code with this code I written below:
#blog-pager-newer-link {
float: left;
display: none;
}

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

#blog-pager {
text-align: center;
display: none;
}
You might understand that we are actually hiding those link with a simple line "display:none:". It don't delete the links. If you really want to delete those 'Newer' and 'Older' Posts links from your blog then delete the first code from your blog html page.

If you want to get back those link again. Then just remove the simple line "display:none" from blogger html page. Links will be visible in your blog again.

2 comments:

  1. thanks maxim, i did it, hey there's no problem with your grammar, in the world of blogging, the important is you are easily to understand, share your point of views, express your emotions and blog in your own style, that would be fine, rather than, we are sounding like a pro. Thanks for this tutotial maxim, keep it up!

    ReplyDelete
  2. Thank you!! Helped me a lot :)

    ReplyDelete

Please help me to improve my English. Please Email me or comment below. Thanks...