Blogger is one of the most popular
blogging platforms where you can create your own website or blog for
free. There are a number of widgets available that you can add to your
blog. Some of the widgets are pre-installed in your Blogger template
like "Powered by Blogger" attribution widget.
This widget allows you to add a copyright notice at the bottom (in the footer section) of your blog. Due to some reasons, Blogger has locked attribution widget which prevents you from deleting it directly. Here we have two simple workarounds that can help you to remove "Powered by Blogger" attribution widget from your blog.
In this method, we will unlock the attribution widget in your Blogger template. Here's a step-by-step guide -
You can also hide "Powered by Blogger" attribution widget from your blog using display:none property of the CSS. Please note that, we aren't actually removing the widget from the HTML code, instead we are just hiding it from the webpage. Follow these steps -
This widget allows you to add a copyright notice at the bottom (in the footer section) of your blog. Due to some reasons, Blogger has locked attribution widget which prevents you from deleting it directly. Here we have two simple workarounds that can help you to remove "Powered by Blogger" attribution widget from your blog.
How to remove "Powered by Blogger" widget
In this method, we will unlock the attribution widget in your Blogger template. Here's a step-by-step guide -
- Login to your Blogger Dashboard, go to Template, and then click "Edit HTML" button.
- Now tap "Jump to Widget" button and click "Attribution1" from the drop-down list.
- Find the following code in the template editor and replace locked=’true’ with locked=’false’.
<b:widget id=’Attribution1′ locked=’true’ title=” type=’Attribution’>

- After this, click "Save template" button to save the changes. Now you have successfully unlocked the attribution widget.
- To delete "Powered by Blogger" from your blog, go to Layout section and click edit link of the attribution widget.

- Now a pop up window will open. Tap "Remove" button here to remove the widget from your blog.

How to hide attribution widget using CSS
You can also hide "Powered by Blogger" attribution widget from your blog using display:none property of the CSS. Please note that, we aren't actually removing the widget from the HTML code, instead we are just hiding it from the webpage. Follow these steps -
- Login to your Blogger Dashboard and go to Template > Edit HTML.
- Click anywhere in the template editor and press CTRL+F to open the search box.
- Type ]]></b:skin> code and press the enter button to search for it.
- Just above ]]></b:skin>, paste the following CSS code:
#Attribution1 {display: none;} - Now tap "Save template" button to save the changes. That's it.

0 Reviews:
Post a Comment
If you have any doubts, Let me know, Please!