Remove-older-post-and-posts-atom-links



In the default Blogger templates, you might see at the  words  “Newer Post”, “Home” and “Older Posts”. Really these buttons are very helpful to users. But some Blogs are really acting like as Professional websites, that means , they didn't contain these types of links.This tip surely help them.







  • After Sign In to Blogger , Go to Dashboard 

  • Then Click on  Layout 

  • Go to Edit Html and tick mark on  Expand Widget Templates 



  • Find this code in your template code :



#blog-pager-newer-link {

float: left;

}



#blog-pager-older-link {

float: right;

}



#blog-pager {

text-align: center;

}

After wards  replace with this code:

#blog-pager-newer-link {

display: none;

}



#blog-pager-older-link {

display: none;

}



#blog-pager {

display: none;

}

Yyou wish to return to the original state, simply reverse the process.

Thanks :)