How to Disable Template Footer Copyright line ?
SEO Help and Tips
How to Disable Template Footer Copyright line ?
Here is the code sample to Inactive any link of website. To disable following footer link follow the instructions.
1. Do not use full code.
2.Copy only green marked code
3.Go to your website code editor and search (Ctrl+F) "copyright"
4. Add style css before copyright line, After <div class='copyright-area'>....here.
<style>.disabled-link{pointer-events:none;cursor:not-allowed;color:inherit;text-decoration:none;display:none;}</style>
5.Paste onclick='return false;' into <a href=..........>
Example:
<div class='copyright-area'>
<style>.disabled-link{pointer-events:none;cursor:not-allowed;color:inherit;text-decoration:none;display:none;}</style>
<div class='copyright-area'>Design by <a href='https://www.templateify.com/' id='copyright' onclick='return false;' rel='dofollow'>Blogger Templates</a></div>
</div>
Comments
Post a Comment
Thanks for your Comments.