how to hide Older Post or Newer Post in blogger, I have before posted that to change image and name for newer and older post and click here to go there
To hiding a Newer Posts link:
Find the code below or similar code in your template:
#blog-pager-newer-link {
float: left;
}
Change the code with the code below:
#blog-pager-newer-link {
display:none;
}
Save the template.
To hiding older Posts;:
Find the code below or the similar code in your template.
#blog-pager-older-link {
float:right;
padding-right:5px;
}
Change the code with the code below:
#blog-pager-older-link {
display:none;
}
Save the template
To hiding Home
Find the code below or the similar code in your template.
#blog-pager {
text-align: center;
}
Change the code with the code below:
#blog-pager {
display:none;
}
Save the template
It is easy, isn;��t it? Or are you still confused? Ok, Just read the step below
1. Log in into blogger with your ID
2. Click Layout
3. Click Edit HTML tab
4. Click download Full template. Please save the template first to back up it.
5. Find the code that is similar with the code below:
#blog-pager-newer-link {
float: left;
}
#blog-pager-older-link {
float:right;
padding-right:5px;
}
#blog-pager {
text-align: center;
}
6. Delete the code above and change it with the code below:
#blog-pager-newer-link {
display:none;
}
#blog-pager-older-link {
display:none;
}
#blog-pager {
display:none;
}
7. Click Save Template.
8. Done.











{ 2 comments… read them below or add one }
Hi,
Nice and excellent information shared by you. I have done that.
Thanks again
Thanks…!