Friday, October 30, 2009

Remove Newer or Older Post Links

If you want to make your Blogger blog looks like a website, one of the things you need to remove is the “Newer Post”, "Home", and “Older Post” links from Blogspot post footer. Besides removing them you actually can change them or add images instead of “Newer Post” and “Older Post” links. There are two ways to do it and these hack are easy to perform and will take only few seconds.
How to Remove Newer or Older Post LinksHow 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.
The second method is:
  • 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