Remove Home, Newer Post And Older Post

Posted by: Shahbaz Malik on 4 February 2012 Under:
Blogger home newer post older post
You often see Home, Newer Post and Older Post links below every post of the Blog. These links are very useful as they provide a linkage between the two pages but most of the people don't like these links. For this reason I am sharing a article to easily remove (How to customize these links) these links by modifying the template code. Or if you don't like the name of these links (Home, Newer Post, Older Post) you can change it into any name depending upon the choice. So lets see how it would be done.

How to remove Home, Newer Post And Older Post:-

  1. Login to Blogger Dashboard.
  2. Go to Edit HTML/Design.
  3. Download full template before making any changes in it.
  4. Click "Expand Widget Template".
                        blogger Edit HTML design 
  1. Now Find blog-pager-newer-link in template.
  2. You will get the following piece of code.

     #blog-pager-newer-link {
      float: $startSide;
      margin-left:2%;
     
     }

    #blog-pager-older-link {
      float: $endSide;
      margin-right:2%;
     }

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

    1. And change it into the following code.

        #blog-pager-newer-link 
       {
        float: $startSide;
        margin-left: 2%;
       display: none;
        }

      #blog-pager-older-link {
        float: $endSide;
        margin-right: 2%;
        display:none;
       }

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

      1. Finally save the template and see the result.
      Note:- One thing should be kept in mind that it is not good practice to remove these links from blog as they provide great hesitation to your readers.
      If find any difficulty in placing the code then comment are always open for that or  If you like the above article then don't forget to subscribe it for latest updates.
      If you enjoyed this article then kindly take 5 seconds to share it!!

      0 comments:

      Post a Comment

      LinkWithin

      Related Posts Plugin for WordPress, Blogger...