Custom Search

Sunday 20 March 2011

TIPS TO REMOVE SUBSCRIBE TO: POSTS (ATOM), HOME, OLDER POSTS FROM BLOGGER/BLOGSPOT:




Some times blogspot users feel uncomfortable with certain in-built common features of blogger/blogspot such as links like “Subscribe to Posts (Atom)”, "Newer posts, Home, and “older post "”. By removing these links which are usually located in the bottom section of all the pages below comment, too much blog feeling of your site can be avoided.

Before you start the work, make a backup of your template as a precautionary measure. For removing “Subscribe to Posts (Atom)” link, first you click on “Edit html” part of “Design” section
On the right side of “Edit Template” just tick on the “Expand Widget Templates”.
Then search for the following code in the template



Once you find the code, remove it and save your template.
Now the “Subscribe to Posts (Atom)” link is removed from your blog site.


For removing the links like "Newer posts, Home, and “older post “from new blogger templates, do the following steps.

Select “Edit html” option .
Search for the below code

#blog-pager {
padding: 15px;
}

Once you find the code, just type “display: none;” as indicated below.

#blog-pager {
padding: 15px;
display: none;
}


If you are using old blogger templates, just include the changes displayed in bold in the html section of your template.

#blog-pager-newer-link {
float: $startSide;
display: none;
}

#blog-pager-older-link {
float: $endSide;
display: none;
}

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

1 comment:

Fionna said...

Excellent instructions, and up to date, thank you!

Related Posts Plugin for WordPress, Blogger...
Custom Search