How to remove powered by blogger
We all know that blogger is a free website builder so it shows powered by blogger at footer of websites. It doesn't provide tools to remove it. Friends, there are three easy ways to remove powered by blogger–
1. By editing html
Step1-login to your blogger account and then go to theme.
Step2-click down arrow (with customize) and select edit html.
Step4-type the code (below) in search box and click search.
]]></b:skin>
Step5-Now select that code, finded in page,and replace it with code below:
#Attribution1 {display: none;}
After this process powered by blogger will be removed from the website.
2.By using customize in theme(preferred for mobile)
Step1-login to your blogger account and then go to theme.
Step2-Click customize and then in advance at last, in add css option paste the code below:
#Attribution1 {display: none;}
Now click apply to blog.
After this process powered by blogger will be removed from the website.
3.by changing attribution properties in html
Step1-login to your blogger account and then go to theme.
Step2-click down arrow (with customize) and select edit html.
Step3-Now click on jump to widget and select attribution1. You will find this code:
<b:widget id='Attribution1' locked='true' title='' type='Attribution'>....</b:widget>
Step4-Now change locked='true' into locked='false'. New code will appear like:
<b:widget id='Attribution1' locked='false' title='' type='Attribution'>....</b:widget>
Now finally click on save.
After this process powered by blogger will be removed from the website.