Love your new site. Is there a way to remove "Newer Posts" "Home" and "Older Posts" from the bottom of the page. Happily this is an easy fix. This also removes the Home link from the bottom of the page.
(It is the #blog-pager part of the code.)
Step 1: Go to >> Blogger>>Blog>>Template
Step 2: Click>> Edit HTML
Step 3: Find Below Code
#blog-pager-newer-link float: left; }#blog-pager-older-link { float: right; }#blog-pager { text-align: center; }
Step 4: Replace with this code:
#blog-pager-newer-link { display: none; }#blog-pager-older-link { display: none; }#blog-pager { display: none; }
If, by chance, you wish to return to the original state, simply reverse the process.