How To Remove Footer Credit / Copyright In Blogger Template Without Redirecting Another Website [ Hide Copyright Widgets ]
There are many websites which provides free theme for blogger like Soratemplate,Templateify,Msdesign,way2themes, gooyaabitemplates, justfreethemes etc. But these free blogger template comes with Footer Credit. These Blogger template are free to download but to remove Footer credit you need to buy theme and get it removed by Owner of the theme. If you know how to remove footer credits from blogger theme then you can remove it yourself and it is really very simple to do.
This is a sizably voluminous quandary especially for those who are incipient to blogging when they do not have mazuma or do not optate to buy a premium template so they often use free templates and because But the free templates we utilize already have footer credits in the template of the company of that template.
if you optate to get Google AdSense approbation on your website, get AdSense approbation if your website has footer credit or other site name in copyright.If the site is a little more liable to not get approbation from Google AdSense. And so this is an astronomically immense quandary, so today I will show you how you can facilely indite without any hassle with the product of any blogger template on any website, if you follow the steps below, I hope you Blogger can remove or hide footer credits from any template on the website.- Open your Blog Dashboard > Theme > Template Html Editor.
- Find the copyrights in the HTML by utilizing whatever word that is in your copyright-like copyright, Designed by,Credite,Developed By and etc.
- Use HTML/CSS or Replace/Remove Our Tricks
Blogger Footer Credit Remove Or Hide Using Style Method 1:
Style="visibility:Hidden"(code-box)
Or
Style='visibility:Hidden'(code-box)
Step 2 : Blogger Footer Credite Or Copyright Hide With Jquery
Code :
<script src=’//code.jquery.com/jquery-1.10.2.min.js’/>(code-box)
Or
<script src=’//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js’/>(code-box)
If You dont find those code, try to remove similar to like those code.(alert-passed)
Now, remove this script from your template and save template.
Method 3 : Blogger Footer Credite Or Copyright Hide Using JavaScript Or Jquery.
Using JavaScript OR Jquery Here, we will be finding the element and using JS or Jquery.
- Find Footet Credite or Copyright ID
- Add the below code in the <head></head> of your page, replacing the ID with your Id.(Do not remove the # and If you noted down class, replace #ID to the class and add '.' in front of it.(here you have to change template footer ID)
Code:
<script>$(document).ready(function(){$(#YOUR-ID).css('opacity','0');});</script>(code-box)
Attention
(info)