How to Remove "Powered By Blogger" Attribution Text From Your Blogger

Here we discuss 3 methods that can remove the "Powered By Blogger" attribution text from your Blogger blog. When you create a new blog using default templates, this widget is automatically added to your blog.


Method 1 : Using CSS

This is perhaps the simplest method to hide the attribution text.

Just add the following in your Blogger template html before the ]]> tag and save your template. (Go to Blogger → Template → Edit HTML and press Ctrl + F to find ]]>)

#Attribution1{display:none !important}

Method 2 : Remove widget by unlocking widget

Go to Blogger → Template → Edit HTML and press Ctrl + F to find type='Attribution'. You will reach the following code:

<b:widget id='Attribution1' locked='true' title='' type='Attribution'>
...
</b:widget>

and replace the locked='true' with locked='false'.

<b:widget id='Attribution1' locked='false' title='' type='Attribution'>
...
</b:widget>

Save your template and Go to Blogger → Layout and and click on Attribution widget, and now you can see the removal option. So just click on it, and save your settings. You will successfully remove the powered by Blogger attribution widget from your blog.

Method 3 : Delete widget from template

Go to Blogger → Template → Edit HTML and press Ctrl + F to find type='Attribution'. You will reach the following code:

<b:widget id='Attribution1' locked='true' title='' type='Attribution'>
...
</b:widget>

and just delete the code altogether. Save the template and the attribution is gone.
Method 3 is the best method in all three. The second method may not always work.

I hope you find this tutorial useful. Stay tuned for more tutorials!

No comments:

Post a Comment