The 'Attribution' widget is that widget in the footer that says 'Powered By Blogger'. Blogger's terms and conditions do not allow to remove this widget from the blog. Although presence of this widget is little bit of annoying. If you've ever tried to remove this widget, you may have noticed that this widget is locked into your blog i.e. if you go to 'Layout' panel, you'll find that you can't move (and hence can't remove) this widget. Even if you click 'Edit' on 'Attribution' widget, a new window appears which doesn't contain a 'Remove' button on it (displayed below).

Attribution widget window without 'Remove' button
Before you make any changes, it is recommended to backup your blog template in case something goes wrong.
Let's proceed.- Go to 'Blogger' dashboard.
- Click the drop-down arrow adjacent to 'Go to post list' icon and select 'Template' from the drop-down menu list.
- Click on 'Edit HTML'.
- Search for (Ctrl+F)
Attribution1
. You'll find a code like the following.
<b:widget id='Attribution1' locked='true' title='' type='Attribution'>
Unlock the widget first, then remove
- Change the value of
locked
attribute fromtrue
tofalse
. When you're done, it will look like following. - Save your template.
- Go to 'Layout' tab.
- Click the 'Edit' on 'Attribution' widget.
- A new window will appear where you'll find a 'Remove' button. Click that 'Remove' button and confirm it.
Attribution widget window with 'Remove' button
<b:widget id='Attribution1' locked='false' title='' type='Attribution'>
Hide the widget
- Search (Ctrl+F) for
</b:skin>
and paste the following before</b:skin>
. - Save your template.
#Attribution1 {
display: none;
}
If you have any questions on this, please let me know. Happy blogging.
Comments
Post a Comment
Comments left on this site will be moderated. Note that all comments with abusive, disruptive or explicit content and comments with links will be deleted immediately.