Sunday, November 10, 2013

Remove Blog Name from Blogger Post Title

Remove / Delete / Hide Blog Name from Blogger Page Post Titles


You just need to do a simple edit on your template.

Hoto Design -> Edit HTML from Blogger Dashboard.

Find this code from html code. 
<title><data:blog.pageTitle/></title>

and replace it with the following code below
<b:if cond='data:blog.pageType == &quot;index&quot;'> 
<title><data:blog.title/></title> 
<b:else/><title><data:blog.pageName/></title></b:if>
After replacing the code, save the template. That is it!

Friday, November 8, 2013

How to Add / Put a Background Image to Blogger with Pictures

How to Add / Put a Background Image to Blogger with Pictures

You can easily add / put your own background image or picture to your Blog using this tutorial.

How to Add a Background Image to Blogger

To Change Background Image:
  • Goto -> Dashboard menu from the blogger and then select the template menu

  • Blogger Template Designer page will be open and select the background option from that menu.

  • Upload your background image which you want to upload using upload menu.


  • Browse background image and upload it and save your blogger template.
After saving your template you can open your blog, your updated background imate will be shown..


Tuesday, November 5, 2013

Fix Duplicate Meta Description Tags in Posts and Homepage from Blogger

Fix Duplicate Meta Description Tags in Posts and Homepage from Blogger

Learn how to remove Duplicate Meta Description Tags from Blogger. This tutorial will helps you to remove duplicate Meta Description Tags in blog posts and homepage.

Backup your template and Follow these easy steps:
 Go To Blogger -> Template
Click Edit HTML
Search for the following code,
<b:if cond='data:blog.metaDescription != &quot;&quot;'>
<meta expr:content='data:blog.metaDescription' name='description'/>
</b:if>

Now replace the old code with following set of codes..
<b:if cond='data:blog.url != data:blog.homepageUrl'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:blog.metaDescription != &quot;&quot;'>
  <meta expr:content='data:blog.metaDescription' name='description'/>
</b:if>
</b:if>
</b:if>
Now save your template and open your blog’s homepage and check source code. Its all done..