Remove Home link / Box

Go to Template => Edit HTML find the code #blog-pager { ......... } Add "display: none;" to the code #blog-pager { ......... display: none; }

Change Favicon

Two ways to change default Blogger favicon

# 1:
  • Go to Template => Edit HTML
  • Find the code: <title><data:blog.pageTitle/></title>
  • After the code add the line below
    <link rel="shortcut icon" href="URL of your favicon file"/>
# 2:
  • Go to Layout => Favicon => Upload your favicon => Save

Create your own Blogger Search Box

For some users, Blogger's Search Box gadget is not working properly. In this case you can create your own Search Box with the steps below:
1. Go to  Layout ==> Page Elements ==> Add a Gadget ==> HTML/Javascript
2. Put the following codes:
 <form action="search" name="input" method="get">
 <input value="Search" name="q" size="20" type="text"/>
 <input value="Go!" type="submit"/>
 </form>
3. Save

Change Default Post Font

1. Go to Template ==> Customize
2. On Blogger Template Designer, go to Advanced ==> Page ==> Font

Remove - Subscribe to: Posts (Atom)

1. Go to Template ==> Edit HTML ==> Check Expand Widgets Template Box
2. Find the scripts below
 <b:if cond='data:blog.pageType != "item"'> <!-- Blog feed links -->
 <b:if cond='data:feedLinks'>
 <div class='blog-feeds'>
 <b:include data='feedLinks' name='feedLinksBody'/>
 </div>
 </b:if>
3. Remove the line <b:include data='feedLinks' name='feedLinksBody'/>

Remove Default Attribution

1. Go to Template ==> Edit HTML
2. Find the script below
    <!-- outside of the include in order to lock Attribution widget -->
    <b:section class='foot' id='footer-3' showaddelement='no'>
    <b:widget id='Attribution1' locked='true' title='' type='Attribution'/>
    </b:section>
3. Replace 'no' with 'yes', 'true' with 'false', save changes
4. go to Layout ==> Edit Attribution ==> Remove ==> Save