How to remove author name, post link, E-mail from the front page of your Blogspot blog


If you are using Read more… or expandable post hack on your Blogger blog [To apply this hack see this post on blogbulk] then you may not want the author name, email this post, Post link icons come on the very front page! This thing came on my mind also but although after loads of googling I could not find the exact solution! So I headed to the google help to understand their blogger coding and find my own way out! It is not that much difficult. Here is what you need to do…

Just follow these simple steps:

  • Goto your Blogger DashboardLayoutEdit HTML and click on “Expand Widget Template
  • Now search for the line

    <div class=’post-footer-line post-footer-line-1′>

    I have found this line on almost every default blogger Templates including minima template! So you should find this without any problem.

  • Now replace it by

    <div class=’post-footer-line post-footer-line-1 expandable-cus’>

    Note that what I am asking you to do is add another class to that footer div tag. We shall use CSS to modify our class

  • Now before the closing </head> add this code

    <!–Start Post footer post formatting visit http://greentechspot.blogspot.com–>
    <style>
    <b:if cond=’data:blog.pageType == &quot;item&quot;’>
    div.expandable-cus {display:inline;}
    <b:else/>
    div.expandable-cus {display:none;}
    </b:if>
    </style>
    <!–End Post footer post formatting visit http://greentechspot.blogspot.com–>

    </head>

  • Click on preview template and you should not see the “author”, “link” and “email” texts on your post footer.
  • Now save the template and enjoy.

Thats it all what you need to do! I hope you have enjoyed this small and simple hack. Please dont remove the credit section! This is in no way going to come into your blogger page and this is all what I ask you in return of this tutorialsmile. If you are facing any problem or want to share something then please feel free to do so by leaving your precious comments

~~The End~~

RATE IT: (1) Sucks (2) Stupid (3) Kewl (4) Rad (5) Wicked

2 comments

Comments are closed.