December 6, 2010

How To Remove Blogspot Footer Link

|
Here is a quick tip on how to remove the Blogspot footer link

1. Go to Template. Click Edit HTML.

2. Look for this piece of code in the template:
 <!– outside of the include in order to lock Attribution widget –>
    <b:section class=’foot’ id=’footer-3' showaddelement=’no’>
    <b:widget id=’Attribution2' locked=’true’ title=” type=’Attribution’>
    <b:includable id=’main’>
    <div class=’widget-content’ style=’text-align: center;’>
    <b:if cond=’data:attribution != &quot;&quot;’>
    <data:attribution/>
    </b:if>
    </div>

    <b:include name=’quickedit’/>
    </b:includable>
    </b:widget>
    </b:section>


3.  Comment-out or it simply means hide the code from displaying. You have to type this <!–  in front of the code  and this  –> at the end of the code.

4.  This is how it should look like:

    <!– outside of the include in order to lock Attribution widget –>
   
<!– <b:section class=’foot’ id=’footer-3' showaddelement=’no’>
    <b:widget id=’Attribution2' locked=’true’ title=” type=’Attribution’>
    <b:includable id=’main’>
    <div class=’widget-content’ style=’text-align: center;’>
    <b:if cond=’data:attribution != &quot;&quot;’>
    <data:attribution/>
    </b:if>
    </div>

    <b:include name=’quickedit’/>
    </b:includable>
    </b:widget>
    </b:section>

    -->

5.  Click Save Template.

6.  When you click Save Template, you will see this warning message:

Warning: Your new template does not include the following widgets:
* Attribution3
Would you like to keep these widgets on your blog or delete them?
 Deleting widgets cannot be undone.


7. Just click Keep Widgets:  

That's all.