Websites are not like personal blogs. Hence, It is essential to hide or remove the 'newer post', 'older post' and rss links in the website. How do we do this?
1. Click 'Edit HTML' in the Blogger Layout page.
2. 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;
}
3. 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 and you're done!
Another tip: If you want to hide any part of a template, just paste 'display: none;' below the opening tag. Eg. If you do not want a footer for your blog, just type 'display:none;' right below ' #footer { '.
Thanks for this trick.. I applied it to my site...