How do I remove "Blogger Templates Created By" from my blog

 How do I remove "Blogger Templates Created By" from my blog?

Add the style code below right before <div class='copyright'>

  1. <style>.removelink{text-indent:-99999px;}</style> 
  2. <div class="removelink"> 

and remember to add an extra </div> at the end of the code. It’ll look like this:

  1. <style>.removelink{text-indent:-99999px;}</style> 
  2. <div class="removelink">  
  3. <div class='copyright'>  
  4. Designed by <a href='https://www.artnet.me/' id='mycontent' title ='Blogger Tempelates'>My Site</a></div></div> 

Then, copy the following part

  1. Designed by <a href='http://www.texliff.com/' id='mycontent' title ='Blogger Tempelates'>My Site</a> 

You should remove id='mycontent' title ='Blogger Tempelates and paste the updated code (I mean this —— Designed by <a href='https://www.artnet.me/'>My Site</a>) RIGHT ABOVE this code: <style>.removelink{text-indent:-99999px;}</style>

In the end, what you will have is something like this:

  1. <!-- Footer Copyright --> 
  2. 2021 Artnet by <a href='https://www.artnet.me/'>Mysite</a> | Powered by <a href='https://www.artnet.me/' rel='dofollow' style='color:#666;' target='_blank'>Mysite</a> 
  3. <style>.removelink{text-indent:-99999px;}</style> 
  4.  
  5. <div class="removelink">  
  6. <div class='copyright'> 
  7.  
  8. 2018 Mysite by <a href='https://www.artnet.me/' id='mycontent' style='visibility: hidden'>Mysite</a> | Powered by <a href='https://www.artnet.me/' rel='dofollow' style='color:#666;' target='_blank'>Mysite</a> 
  9.  
  10. </div> 
  11. </div> 

This is the easiest method. Hope it helps