How do I remove "Blogger Templates Created By" from my blog? |
Manny times people surfer from the issue how to remove Blogger footer credit section from template But there is not an exact solution for it Thats the reason i suffered So now i am going to revail the trick that how we can do it
What you need to do is:
Add the style code below right before <div class='copyright'>
<style>.removelink{text-indent:-99999px;}</style>
<div class="removelink">
and remember to add an extra </div> at the end of the code. It’ll look like this:
<style>.removelink{text-indent:-99999px;}</style>
<div class="removelink">
<div class='copyright'>
Designed by <a href='http://www.texliff.com/' id='mycontent' title ='Blogger Tempelates'>My Site</a></div></div>
Then, copy the following part
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='http://www.texliff.com/'>My Site</a>) RIGHT ABOVE this code: <style>.removelink{text-indent:-99999px;}</style>
In the end, You will have is something like this:
<!-- Footer Copyright -->
2018 Mysite by <a href='https://www.texliff.com/'>Mysite</a> | Powered by <a href='https://www.texliff.com/' rel='dofollow' style='color:#666;' target='_blank'>Mysite</a>
<style>.removelink{text-indent:-99999px;}</style>
<div class="removelink">
<div class='copyright'>
2018 Mysite by <a href='https://www.texliff.com/' id='mycontent' style='visibility: hidden'>Mysite</a> | Powered by <a href='https://www.texliff.com/' rel='dofollow' style='color:#666;' target='_blank'>Mysite</a>
</div>
</div>
This is the easiest method. Hope it helps you
I have personally used manny times and now finally This is revaled openly to use.