Showing posts with label remove. Show all posts
Showing posts with label remove. Show all posts

Monday, August 31, 2009

Remove "Subscribe to: Posts (Atom)" Link

  • Log In to Blogger.
  • Click Layout.
  • Click Edit HTML.
  • Download Full Template (Optional).
  • Click the 'Expand Widgets Templates' box.
  • Ctrl+F and search for:
    <b:include data='feedLinks' name='feedLinksBody'/>
  • Delete it.
  • Save Template.

Monday, August 10, 2009

Remove Blogger Navbar


  • Log In to Blogger
  • Click Layout
  • Click Edit HTML
  • Download Full Template (Optional)
  • Insert #navbar-iframe {display: none !important;} above the Variable Definitions and below the Blogger Template Style information (See Below Photo)
  • Click Save Template

Sunday, August 9, 2009

Remove Older Posts, Home, and Newer Posts Links in Blogger


  • Log In
  • Layout
  • Edit HTML
  • Ctrl+F and search for:
    #blog-pager-newer-link {
    float: left;
    }

    #blog-pager-older-link {
    float: right;
    }

    #blog-pager {
    text-align: center;
    }

  • Now replace it with this new code:
    #blog-pager-newer-link {
    display: none;
    }

    #blog-pager-older-link {
    display: none;
    }

    #blog-pager {
    display: none;
    }

  • Save Template