Best Methods to Remove Powered by Blogger

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.



Most of  the blogger dislike it and ask are they allowed to remove this from their template? The answer is yes, you are allowed. 

Today I will show you how to remove powered by blogger. you can adapt any of the following method. 

Removing Blogger Attribution via Blogger Layout Dashboard
  • Go to Blogger.com and login to your Blogger profile
  • Select  your blog that you wish to remove this attribute
  • Now go to template and click edit HTML 
  • Here drop-down “jump to widget” option and from that list select Attribution1 as highlighted below
  • Now in the editor press ctrl + F and find for this line <b:widget id=’Attribution1′ locked=’true’ title=” type=’Attribution’>

  • Now replace the locked=’true’ in to locked=’false’ as you can see highlighted below

  • Once done click save template
  • Now go to layout option and at the below you can see attribution gadget, click edit.
  • In that popup window click remove and you are done

  • Now go and view your site where you won’t see the “powered by Blogger” attribution.

Also see : How to Use Alt tags in Blogger images

Removing Blogger Attribution by Using CSS
  • First Login to your blogger account and go to any of your blog.
  • There look for the Template section and navigate to it. In the template area, you'd notice a smaller version of your blog in a frame. Click on the Customize button underneath that.
  • After clicking, a page will open namely, Blogger Template Designer. Head over to the Advanced tab there. And put the following line of code up there

                            #Attribution1{display:none;} 


  • Next click on Apply to Blog at the right corner of that page. That's it. 

Removing Blogger Attribution via Blogger Template HTML


  • First Login to your blogger account and go to any of your blog.
  • Find Template section of your blog.
  • Now click on Edit Template beside the Customise button and click on Edit HTML.
  • Now Click on middle and After that look for this code

                                     ]]></b:skin>




  • Found the code? Alright, now paste the following code above ]]></b:skin> like this. 


                           #Attribution1{display:none;} 



  • At last click on Save Template and wait until it gets saved.
Removing Blogger Attribution from Mobile Template
  • Login to your blogger account and click on template
  • Now click on Edit HTML and find Jump to Widget and click on attribution 1. It looks like this.
<b:widget id='Attribution1' locked='true' title='' type='Attribution'>


  • Now add an extra attribute for mobile devices by adding code like
 <b:widget id='Attribution1' locked='true' mobile='no' title='' type='Attribution'>

Now click on save. you have done it. 

If nothing works from the methods given above then ......

Find this code and delete it. 

 <b:widget id='Attribution1' locked='true' title='' type='Attribution'>
          <b:includable id='main'>
    <b:if cond='data:feedbackSurveyLink'>
      <div class='mobile-survey-link' style='text-align: center;'>
        <data:feedbackSurveyLink/>
      </div>
    </b:if>

    <div class='widget-content' style='text-align: center;'>
      <b:if cond='data:attribution != &quot;&quot;'>
       <data:attribution/>
      </b:if>
    </div>

    <b:include name='quickedit'/>
  </b:includable>
        </b:widget>


Now save your template.