In blogger you have this 2 option to view your older post and newer post. But some of you may think your blog may look better if you dont have these two links. There are hacks that will allow you to stop displaying them, but these two links becomes handy in times when you have a lot of blog posts. Suppose your reader clicks on a label category of your blog which consist of more than 200 post just say, and its pretty sure that all the posts will not be displayed, so in this ocassion the Older Posts becomes handy to use, allowing your readers to read the older posts. But this hack may be useful for bloggers who will not have a larger number of blog post instead a few.

So now lets learn the hack on how we can implement this hack to remove older posts and newer posts.
  1. Login to your blogger dashboard

  2. Click on Layout

  3. Click on EDIT Html Tab

  4. And find for this piece of code,
    #blog-pager-newer-link {
    float: left;
    }

    #blog-pager-older-link {
    float: right;
    }

    #blog-pager {
    text-align: center;
    }

    Now replace the above code with the following code,
    #blog-pager-newer-link {
    display: none;
    }

    #blog-pager-older-link {
    display: none;
    }

    #blog-pager {
    display: none;
    }

  5. Now save your template and your done.


Now view your blog to see that your Newer Posts and Older Posts removed. Suppose later on if you wish that your blog would need this two links, just simple reverse the code as it was before and you will have this on your blog.

0 comments: