How to Remove older post and newer post link in Blogger?



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.

  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.

Got Something to Add?
0 comments: Post a Comment

Older Post