HOW TO remove a) newer post links, b) older posts links and c) home link in blogger

BLOGGER

Question:
How to remove a) newer post links, b) older posts links and c) home link?

Answer:
On your blogspot's home page:
Click Design

On your blogspot's dashboard:
Click Template (always make a backup of your template before any changes)
Click Edit HTML

For older blogger versions                                        
On your Template's HTML:
Click Edit template    
Click in the HTML template area
Press Control+F on the keyboard and, on the "Search" blank space, type: ".blog-pager-older-link" or ".blog-pager-newer-link" or ".home-link" (without quotes - don't forget the dot) and press enter - you will jump to the relevant highlighted text
Right after the   "{"   sign, type "display: none;" (without quotes)

The template's new script:

.blog-pager-older-link, .home-link,
.blog-pager-newer-link {
display: none;

Click Preview template to see the result on blogger
Click Save template

Alternate script for newer blogger versions

Remove Older Posts
On your Template's HTML:
Click Edit template    
Click in the HTML template area
Press Control+F on the keyboard and, on the "Search" blank space, type: "blog-pager-older-link"(without quotes) and press enter - you will jump to the relevant highlighted text in the following script:

<b:if cond='data:olderPageUrl'>
      <span id='blog-pager-older-link'>
      <a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-older-link&quot;' expr:title='data:olderPageTitle'><data:olderPageTitle/></a>
      </span>
    </b:if>

Delete the whole script
Click Preview template to see the result on blogger
Click Save template

Remove Newer Posts
On your Template's HTML:    
Click in the HTML template area
Press Control+F on the keyboard and, on the "Search" blank space, type: "blog-pager-newer-link"(without quotes) and press enter - you will jump to the relevant highlighted text in the following script:

    <b:if cond='data:newerPageUrl'>
      <span id='blog-pager-newer-link'>
      <a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-newer-link&quot;' expr:title='data:newerPageTitle'><data:newerPageTitle/></a>
      </span>
    </b:if>

Delete the whole script
Click Preview template to see the result on blogger
Click Save template

Remove Home
On your Template's HTML:    
Click in the HTML template area
Press Control+F on the keyboard and, on the "Search" blank space, type: "home-link"(without quotes) and press enter - you will jump to the relevant highlighted text in the following script:

<a class="home-link" expr:href="data:blog.homepageUrl">

Delete the whole script
Click Preview template to see the result on blogger
Click Save template