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 {After wards replace with this code:
float: left;
}
#blog-pager-older-link {
float: right;
}
#blog-pager {
text-align: center;
}
#blog-pager-newer-link {Yyou wish to return to the original state, simply reverse the process.
display: none;
}
#blog-pager-older-link {
display: none;
}
#blog-pager {
display: none;
}
Thanks :)