In most of the blogger templates you will find page navigator. It is useful for those who do not have Archive or Label widget. But people who have beautiful customized archive or label widget they do not need this navigation bar. So, today we will learn how to remove 'Older Posts', 'Newer Posts' and 'Home' Link on blogger blog. Let's start:


To completely remove these items, we will just add some new CSS rules to our template in the normal way.


☛ First log in to blogger. Then go to your Dashboard.

☛  Select Template ➤ Customize ➤ Advanced.

☛ Then you will find a box called 'Add CSS'.

☛ Now copy and paste the following codes to remove 'Older Posts', 'Newer Posts' and 'Home' Link
➜ To remove 'Older Posts' ⬎

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

➜ To remove Newer Posts' ⬎

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

➜ Or to remove both of them and the 'Home' link

#blog-pager {
display: none;
}

☛ Click Apply to Blog and you are done!