Skip to main content

Posts

Showing posts from May, 2016

Add Chat Emoticons to Blogger Post, Make your post interactive

If you want to show your expression to your readers then you must try this Add Emoticons support in Blog and make your post more interactive :) :D :P ;)  Login to your Blogger account , Click on Template tab then Edit HTML of template Place this piece of code just before </head> tag <!-- To Show Emoticons in blogger --> <script src= 'http://codesroot.weebly.com/uploads/1/2/6/1/12611774/blogger-emoticons.js' type= 'text/javascript' /> Click on Save Template and use emoticons in your posts

Remove Blog Name from Post Title to increase traffic

By Default Blogger includes Blog Name before every post name and same appears in search results It affects Blog search appearance as it hides important keyword of post so to remove Blog name from post we have to do little change in Blogger Template Go to Blogger and click on Template tab then Edit HTML of template and find <title><data:blog.pageTitle/></title> Replace it with this code <!--To Remvove Blog Name from Each post title-Start--> <b:if cond= 'data:blog.pageType == &quot;index&quot;' > <title><data:blog.pageTitle/></title> <b:else/> <b:if cond= 'data:blog.pageType == &quot;static_page&quot;' > <title><data:blog.pageName/> | <data:blog.title/></title> <b:else/> <title><data:blog.pageName/></title> </b:if> </b:if> <!--To Remvove Blog Name from Each post title-End--> Save Template and you a...