How to remove the sentence "Subscribe to: Post Comments (Atom)" from Blogger (Google)
Add the followign CSS to your blog:
.feed-links {
display:none;
}
How To Remove The Blogger Nav Bar
There are two way:
First way (Add the following CSS)
#navbar-iframe {
display: none !important;
}
Second way:
Go in layout select navbar and choice "Disable" (Very easy)
Hot to Remove Post Footer from blogger blogs
Add the following CSS
.post-footer
{
display: none;
}
.post-footer .post-share-buttons {display:none;}
How to remove the Attribution Gadget
Go to Design > Edit HTML.
Take a backup:
Download a copy of your template: this is a backup - save it somewhere safe, in case things go wrong.
3 Find this section in the template:
<!-- outside of the include in order to lock Attribution widget
<b:section class='foot' id='footer-3' showaddelement='no'>
<b:widget id='Attribution1' locked='true' title='' type='Attribution'/>
</b:section> -->
The simplest way to locate it is to use your browser's search function (Edit > Find in Firefox, similar commands in other tools), and look for "lock Attrib".
4 Change
locked = 'true'
to
locked = 'false'
5 Preview the template change, to check that everything else is ok. If not, fix the problem. (The attribution will still be showing at this stage.)
6 Click Save Template
7 From the Design > Page Elements tab, edit the attribution gadget. It will now have a Remove button on the left hand side. Click this, to remove the gadget from your blog.
Hot to Remove "Showing posts with label"
Add the following CSS
.status-msg-wrap
{display: none;}