24 Jan 2015
How to remove Powered by Blogger Attribution Gadget
We know that there is a copyright (optional) field in blogger attribution widget to write/display our blog copyright information and credits. However, you can only write 99 characters long Copyright message.
Further, it does not facilitate us to write a text link information viz. About Us, Sitemap, Terms and conditions etc. Many of us just want to add their copy right messages like All Rights Reserve, Privacy Policy and Contact Us link etc. to the blog footer instead or along with the blogger credit.
Accordingly, you may use any of these following two easy Showeblogin Tricks to either hide or remove Powered by Blogger attribution and add your own text link copyright information.
How to Hide Powered by Blogger Attribution Link from blog Footer
This is a CSS trick to hide blogger attribution Powered by Blogger. Just go to your Blog dashboard, click on Template tab and then hit Edit HTML button.
Now find
- ]]></b:skin>
and replace it with the following CSS Code as shown below.
- #Attribution1{display:none;}
- ]]></b:skin>
The above code will hide only desktop attribution and therefore the mobile visitors of your blog will still see the Powered by blogger attribution. Accordingly, you need to hide the same from the Blogger mobile templates also.
Now, search for the following line
- <b:widget id='Attribution1' locked='true' title='' type='Attribution'>
And replace the same with
- <b:widget id='Attribution1' locked='true' mobile='no' title='' type='Attribution'>
Now, save the template and enjoy!
