How do i get rid of "Older Posts" - "Home" - "Newer Post" links?
- From your Blogger dashboard click on Layout > Edit HTML > tick Expand Full Templates box.
- Don’t forget to backup your template, many bloggers made mistakes in this hack.
- Search for the following code:
<data:newerPageTitle/>
and
<data:olderPageTitle/>
- Now simply delete above codes or replace with anything you want to write, to add picture just place the image URL before the Previous Page and Next Page. Remember to preview changes before saving it.
- Go to Layout > Edit HTML > tick Expand Full Templates box.
- Again, backup your template.
- Find these codes below:
#blog-pager-newer-link {
float: $startSide;
}
#blog-pager-older-link {
float: $endSide;
}
#blog-pager {
text-align: center;
}
- Add "display: none;" inside every curly braces, it will then looks like this:
#blog-pager-newer-link {
float: $startSide;
display: none;
}
#blog-pager-older-link {
float: $endSide;
display: none;
}
#blog-pager {
text-align: center;
display: none;
}
- Preview the changes and click save template.
No comments:
Post a Comment