Pages

Thursday, December 2, 2010

How to remove "Subscribe to: Posts (Atom)"

This is step by step how to remove "Subscribe to: Posts (Atom)" in your blogspot. For safety reason please backup your template.

Removeing "Subscribe to: Posts (Atom)" using CSS

  1. Go to "Layout" | "Edit HTML"
  2. Now, find this line of code below
  3. body {
    For fast searching copy line code above and then Hit CTRL+F and paste.
  4. Replace line code above with the folowing code
    .feed-links{display:none;}
    body {
  5. Save your template and View your blog.
If you fail or anything bad happens, restore your backup template.

How to remove "Powered by Blogger"

This is step by step how to remove "Powered by Blogger" in your blogspot. For safety reason please backup your template.

First way, removing "Powered By Blogger" with removing widget Attribution1

  1. Go to "Layout" | "Edit HTML"
  2. Give Check on "Expand Widget Templates"
  3. Now, find this line of code below
  4. <b:widget id='Attribution1' locked='true' title='' type='Attribution'>
    For fast searching copy line code above and then Hit CTRL+F and paste in Find Box.
  5. Remove this code from your template
    <b:widget id='Attribution1' 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>
  6. Save your template and View your blog.

Second way removing Powered By Blogger using CSS.

  1. Go to "Layout" | "Edit HTML"
  2. Give Check on "Expand Widget Templates"
  3. Now, find this line of code below
  4. body {
    For fast searching copy line code above and then Hit CTRL+F and paste.
  5. Replace line code above with the folowing code
    #Attribution1 {display: none;}
    body {
  6. Save your template and View your blog.
If you fail or anything bad happens, restore your backup template.