How to remove Home, Newer Post And Older Post:-
- Login to Blogger Dashboard.
- Go to Edit HTML/Design.
- Download full template before making any changes in it.
- Click "Expand Widget Template".
- Now Find blog-pager-newer-link in template.
- 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;
}
float: $startSide;
margin-left:2%;
}
#blog-pager-older-link {
float: $endSide;
margin-right:2%;
}
#blog-pager {
text-align: center;
}
- And change it into the following code.
#blog-pager-newer-link
{
float: $startSide;
margin-left: 2%;
float: $startSide;
margin-left: 2%;
display: none;
}
#blog-pager-older-link {
float: $endSide;
margin-right: 2%;
}
#blog-pager-older-link {
float: $endSide;
margin-right: 2%;
display:none;
}
#blog-pager
}
#blog-pager
{
text-align: center;
text-align: center;
display:none;
}
- Finally save the template and see the result.
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.

0 comments:
Post a Comment