How to Remove "Home" Under Blog Posts in Blogger
Instructions
1
Log in to your Blogger account. By default, Blogger opens the "Dashboard" page with a full list of all your hosted blogs.
2
Click the blue "Design" link in the menu section under the title of the blog from which you want to remove the "Home" link on posts.
3
Click the "Template Designer" link under the top navigation bar.
4
Select "Advanced" in the left-hand menu of the Blogger Template Designer in the top half of the page. Scroll to the bottom of the Advanced context menu; then click "Add CSS."
5
Paste the following code into the "Add Custom CSS" input field:
#blog-pager {
display:none;
}
6
Click "Apply to Blog" in the top right-hand corner of the page.
Check your Blog, you’ve done it.
Remove Comment Box from Blogger Pages
Instructions
There are two ways to remove the Comment Box.
1. Remove Comment Box during creation of Blogger Page:
Login to your blog and Select “Pages” tab from left in blog’s “Dashboard”.
Create a New page or edit the existing page. Now You will see Page Settings > Options just left of the page.
Click on “Don’t allow, hide existing” under “Reader comments” to Permanently Hide comment box along with existing comment. If you don’t want to hide “Existing Comments”, then choose “Don’t allow,show existing” Reader Comments.
That’s all. Now this page will hide the comment box.
2. Remove Comment Box from every Pages:
Go to “Template” –> “Edit HTML” --> "Proceed"
Now search for </Head> [Tip: press CTRL+F]
Paste the Following codes just above the </head>
<blockquote>
<b:if cond='data:blog.pageType == "static_page"'>
<style>
#comments {
display: none;
}
</style>
</b:if> </blockquote>
Now save your template. That's all.
No comments:
Post a Comment