How to Remove "Powered By Blogger" Attribution gadget

You can 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 -

How to hide attribution gadget using CSS

  1. Login to your Blogger Dashboard and go to Template > Edit HTML.
  2. Click anywhere in the template editor and press CTRL+F to open the search box.
  3. Type ]]></b:skin> code and press the enter button to search for it.
  4. Just above ]]></b:skin>, paste the following CSS code:
    #Attribution1 {display: none;}
    
  5. Now tap “Save template” button to save the changes. That’s it.

Reference Links

Comments