Remove Blogger Attribution From Sora Templates Permanently | 100% Working
Hey everyone, i am going to expose "how to remove blogger attribution from sora templates?” Recently i explained how to Disable Mouse Right Button in one of my previous articles. Removing attribution from blogger is compulsory if you are trying to make your blog look professional. There are two ways to do so. First way is to buy premium template while second one is given below.
Highlight Articles
Soratemplates or sora templates is the best template store for blogger themes from where you can easily download blogger themes and can upload on your blog. You can also buy premium (paid) version where footer credit is already removed.
Removing blogger attribution from sora templates is a bit difficult as you are required to edit Html code. Many people try to do this simply by editing code in “Edit html” from blogger, but their site is redirected to another page.
Also make sure that you have downloaded the ‘Backup file of your template'.
How To Remove SORA TEMPLATE Footer Credit
Follow given method.
- Visit your Blogger Dashboard.
- Go to Theme and select “Edit html” option.
- Search for the class tag “ty_footer_copyright”.
You will see following code there
.ty_footer_copyright{
text-align: left;
display: inline-block;
line-height: 30px;
}
Replace above code with this one
.ty_footer_copyright{
text-align: left;
display: inline-block;
line-height: 30px;
font-size: 0px !important;
}
.ty_footer_copyright_my{
text-align: left;
display: inline-block;
line-height: 30px;
}
Now, search for the same “ty_footer_copyright”, you will see code like this
<div class=’ty_footer_copyright’>
Created By
<a href=’http://soratemplates.com/’ id=’mycontent’ rel=’dofollow’ title=’ Blogger Templates’>Sora Templates</a>
</div>
After/below paste this code
<div class=’ty_footer_copyright_my‘>
Copyright © 2018
<a href=’YOUR BLOG LINK‘ rel=’dofollow’ title=’YOUR BLOG NAME‘>TITLE</a>
</div>
Save the template.
TRICK DIDN’T WORK?
In a case if above trick didn’t work, try to find ‘class tag’ for copyright footer credit.
For example;
Search for “copyright-area”, “footer-container” etc. And change font size to 0 px.
Comments