Monday, December 2, 2013

// // 1 comment

Add Facebook Verified Page Tick To Author Comments

Add Facebook Verified Page Tick To Author Comments

You seen in many facebook pages the verify ticks mark in admin/author comments and only allow to worldwide companies and actor/artist pages/proflle but i am going to share a trick to add this verify tick to author comments in blogger blog.

Follow these Steps:

  • Go to blogger dashboard
  • Template >> Edit Html
  • Now find this code .comments .comments-content .icon.blog-author and delete the following code inside it
background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEgAACxIB0t1+/AAAAAd0SU1FB9sLFwMeCjjhcOMAAAD+SURBVDjLtZSvTgNBEIe/WRRnm3U8RC1neQdsm1zSBIU9VVF1FkUguQQsD9ITmD7ECZIJSE4OZo9stoVjC/zc7ky+zH9hXwVwDpTAWWLrgS3QAe8AZgaAJI5zYAmc8r0G4AHYHQKVwII8PZrZFsBFkeRCABYiMh9BRUhnSkPTNCtVXYXURi1FpBDgArj8QU1eVXUzfnjv7yP7kwu1mYrkWlU33vs1QNu2qU8pwN0UpKoqokjWwCztrMuBhEhmh8bD5UDqur75asbcX0BGUB9/HAMB+r32hznJgXy2v0sGLBcyAJ1EK3LFcbo1s91JeLwAbwGYu7TP/3ZGfnXYPgAVNngtqatUNgAAAABJRU5ErkJggg==);
And copy the following below code with these code

background: url("https://dl.dropboxusercontent.com/s/gp8fhc34w2rka9h/verified%20page.png") no-repeat scroll 0 0 transparent;
The final codes look likes this

.comments .comments-content .icon.blog-author {
    background: url("https://dl.dropboxusercontent.com/s/gp8fhc34w2rka9h/verified%20page.png") no-repeat scroll 0 0 transparent;

You have done.
if you need more information please leave a comment below and stay tuned. 



Read More
// // 1 comment

How To Add SEO Friendly Blog Post Title

How To Add SEO Friendly Blog Post Title

Today i am going to share to share how to add a search engine friendly blogger blog post title and blog title. Default blog title and post title are not SEO friendly. The Page title is the most important element in your blog in terms of higher ranking in search results. Here is one example blog post title first and after blog title.

How To Add SEO Friendly Blog Post Title


Google only displays 70 characters on Google search results and in case of Yahoo display bit more.So your blog posts will not display or you will not get as much rank in Search Results.

Follow These Steps:


  • Goto blogger dashboard
  • Template >> Edti Html
  • Now find this code
<title><data:blog.pageTitle/></title>
Replace the above code with the following below code.

<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/> - Info Blog Maz</title>
</b:if>

Replace the red blog text with your own blog title
Now save the template you have done if you need any help please leave a comment below stay tuned.

Read More