Tuesday, January 29, 2013

Email Subscription of blog is way to get a regular updates of blog. In this way reader not missing any important updates from blogs. Feedburner allow to customize subscription box with font, color, logo, etc. Also it allow track and manage the subscriber in easy way. So in this post I am going to explain how to create an email subscription for blog using feedburner.
  1. Go to http://feedburner.google.com and logging with your Google account.
  2. Enter address of blog and click on next.


  3. If  your blog have more than one feeds (rss or atom) then select one and click next.


  4. Choose the title and address of blog feed and click on next.


  5. After create a feedburner, you need to enable email subscription for feed. For that go to Publicize > Email Subscription and click Activate.


  6. After activation select widget type and click Go!.


  7. Now you can see the email subscription box in blog.


In this way you can enable email subscription and add subscription box into your blog. In next post I am going to tell you how to customize an subscription box using CSS.
Subscribe for getting more updates.

Friday, January 25, 2013


What is Breadcrumb ?

Breadcrumb is navigation system, which trail from current page back to home page. Breadcrumb is mostly display above the title of post. Breadcrumb help to navigate visitors from related categories. For example,
Home >> Category >> Subcategory >>Post Name
In above trail Home is followed by Category and subcategory, which indicate that where are you? from Home to Post. Breadcrumb is actual display path of current page from homepage.

Advantages

  1. Breadcrumb navigation is user friendly navigation system, which allow visitor to jump back directly to categories or subcategories.
  2. For large website, breadcrumb help to show structure of website, which given an idea to visitor for where are you? and keep the visitor in right track.
  3. Breadcrumb does not take huge space from webpage, it place in single line.

SEO with Breadcrumb 

Breadcrumb is part of Google Rich Snippets. If you install an breadcrumb in blog or website, breadcrumb is display for your website URL in Google search result, as display below.


Which helps visitor jump directly to category or subcategory from search result page.

Installation

  1. Login to Blogger
  2. Go to  Template > Edit HTML
  3. Check Expand Widget Templates.
  4. Search for
    <b:includable id='post' var='post'>
  5. Copy below code and paste after above code
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
      <div class='breadcrumb' xmlns:v='http://rdf.data-vocabulary.org/#'>
      <ul class='bcrumb'>
       <span typeof='v:Breadcrumb'><li class='first'><a expr:href='data:blog.homepageUrl' property='v:title' rel='v:url'>Home</a></li></span>
        <b:loop values='data:posts' var='post'>
          <b:if cond='data:post.labels'>
            <b:loop values='data:post.labels' var='label'> 
            <li><span typeof='v:Breadcrumb'> <a expr:href='data:label.url' property='v:title' rel='v:url'>
              <data:label.name/>
              </a></span></li>
            </b:loop>
            <b:else/>
            <li>Unlabelled</li> </b:if>      
          <li class='last'><data:post.title/></li>
           </b:loop>
          </ul>
      </div>
    </b:if>
  6. Now find
     ]]></b:skin>
  7. And copy the one of the following CSS style from below Breadcrumb Style.
  8. Finally save template.

 Breadcrumb Style

Style 1
.breadcrumb {
    border-bottom:#06F 3px double;
    border-top:#06F 3px double;
    font-family:Verdana, Geneva, sans-serif;
    font-size:11px;
    margin-top:3px;
    margin-bottom:5px;
}
.bcrumb {
    padding:5px;
}
.bcrumb li {
    display:inline;
    padding:0px 5px;
}
.bcrumb li a {
    color:#000;
    text-decoration:none;
}
.bcrumb li a:hover {
    text-decoration:underline;
}
.bcrumb li:after {
    padding-left:10px;
    content:'\00BB';
}
.bcrumb li.last:after {
    content:'';
}
Style 2
.breadcrumb {   
    font-family:Tahoma, Geneva, sans-serif;
    font-size:12px;
    margin-top:3px;
    margin-bottom:5px;
    margin-left:20px;
}
.bcrumb {
    padding:5px;
}
.bcrumb li {
    display:inline-block;
    padding:5px 20px 5px 10px;
    background-color:#f4f4f4;
    border-top-right-radius:15px;
    border-bottom-right-radius:15px;
    margin-left:-15px;
    border:#999 solid 1px;   
}
.bcrumb li:hover{
    background-color:#f9f9f9;
}
.bcrumb li a {
    color:#000;
    text-decoration:none;
}
.bcrumb li a:hover {
    text-decoration:underline;
}
Style 3
.breadcrumb {   
    font-family:Tahoma, Geneva, sans-serif;
    font-size:12px;
    margin-top:3px;
    margin-bottom:5px;
    margin-left:20px;
}
.bcrumb {
    padding:5px;
}
.bcrumb li {
    display:inline-block;
    padding:5px 30px 5px 10px;
    background-color:#f4f4f4;   
    margin-left:-20px;
    border:#999 solid 1px;
    box-shadow:2px 2px 5px 5px #C9C9C9;
 -webkit-box-shadow:2px 2px 5px 5px #C9C9C9;
 -moz-box-shadow:2px 2px 5px 5px #C9C9C9;

  /* For IE<9 */ 
  filter:
  progid:DXImageTransform.Microsoft.Shadow(color=#C9C9C9,direction=0,strength=5),
  progid:DXImageTransform.Microsoft.Shadow(color=#C9C9C9,direction=45,strength=2),
  progid:DXImageTransform.Microsoft.Shadow(color=#C9C9C9,direction=90,strength=5),
  progid:DXImageTransform.Microsoft.Shadow(color=#C9C9C9,direction=135,strength=5),
  progid:DXImageTransform.Microsoft.Shadow(color=#C9C9C9,direction=180,strength=5),
  progid:DXImageTransform.Microsoft.Shadow(color=#C9C9C9,direction=225,strength=5),
  progid:DXImageTransform.Microsoft.Shadow(color=#C9C9C9,direction=270,strength=5),
  progid:DXImageTransform.Microsoft.Shadow(color=#C9C9C9,direction=315,strength=2);
}
.bcrumb li:hover{
    background-color:#f9f9f9;
}
.bcrumb li a {
    color:#000;
    text-decoration:none;
}
.bcrumb li a:hover {
    text-decoration:underline;
}
Style 4
.breadcrumb {
    border-bottom:#1d658d 3px solid;   
    font-family:Verdana, Geneva, sans-serif;
    font-size:11px;
    margin-top:3px;
    margin-bottom:5px;
}
.bcrumb {
    padding:5px;
}
.bcrumb li {
    display:inline;
    padding:0px 5px;
}
.bcrumb li a {
    color:#000;
    text-decoration:none;
}
.bcrumb li a:hover {
    text-decoration:underline;
}
.bcrumb li:after {
    padding-left:10px;
    content:'\00BB';
}
.bcrumb li.last:after {
    content:'';
}
Style 5
.breadcrumb {   
    font-family:Tahoma, Geneva, sans-serif;
    font-size:12px;
    margin-top:3px;
    margin-bottom:5px;
    margin-left:20px;
}
.bcrumb {
    padding:5px;
}
.bcrumb li {
    display:inline-block;
    padding:5px 20px 5px 10px;
    background-image:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgGp-RkxyzmFztZflagBEl2XbbsLA0LYdFeXmmpFbEptw0LO7GxhHYduLj3wUtn9OlPAlBJ00jNcH9zHnBYlpKAlA-S8rybKnDxEBlIJ73doCm8v-7oLc3DqTJfdeu2JReOsI7BzJSzDUw/h120/breadcrumb-separator.gif);
    background-position:right center;
    background-repeat:no-repeat;
   
}
.bcrumb li:hover{
    background-color:#f9f9f9;
}
.bcrumb li a {
    color:#06F;
    text-decoration:none;
}
.bcrumb li a:hover {
    text-decoration:underline;
}

.bcrumb li.last{
    background-image:none;
}
Style 6
.breadcrumb {
    font-family:Tahoma, Geneva, sans-serif;
    font-size:12px;
    margin-top:3px;
    margin-bottom:5px;
    margin-left:20px;
}
.bcrumb {
    padding:5px;
}
.bcrumb li {
    display:inline-block;
    padding:4px;
    border:#666 solid 1px;
    margin-left:-5px;
}
.bcrumb li.last {
    padding:6px;
    font-weight:bold;
    -moz-box-shadow: 0px 3px 3px #a4a4a4;
    -webkit-box-shadow: 0px 3px 3px #a4a4a4;
    box-shadow-bottom: 5px #000;
    /* For IE 8 */
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color='#d4d4d4')";
/* For IE 5.5 - 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color='#d4d4d4');
}
.bcrumb li:hover {
    background-color:#f9f9f9;
}
.bcrumb li a {
    color:#06F;
    text-decoration:none;
}
.bcrumb li a:hover {
    text-decoration:underline;
}
.bcrumb li.last {
    background-image:none;
}
Style 7
.breadcrumb {
    font-family:Tahoma, Geneva, sans-serif;
    font-size:12px;
    margin-top:3px;
    margin-bottom:5px;
    margin-left:20px;
}
.bcrumb {
    padding:5px;
}
.bcrumb li {
    display:inline-block;
    padding:5px;
    border:#666 solid 1px;
    margin-left:-3px;
    -moz-box-shadow: 0px 3px 3px #a4a4a4;
    -webkit-box-shadow: 0px 3px 3px #a4a4a4;
    box-shadow-bottom: 5px #000;
    /* For IE 8 */
   -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color='#d4d4d4')";
   /* For IE 5.5 - 7 */
   filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color='#d4d4d4');
}
.bcrumb li:nth-child(1){
    padding:5px;
}
.bcrumb li:nth-child(2){
    padding:6px 5px;
}
.bcrumb li:nth-child(3){
    padding:7px 5px;
}
.bcrumb li:nth-child(4){
    padding:8px 5px;
}
.bcrumb li:nth-child(5){
    padding:9px 5px;
}
.bcrumb li:nth-child(6){
    padding:10px 5px;
}
.bcrumb li:nth-child(7){
    padding:11px 5px;
}
.bcrumb li:nth-child(8){
    padding:12px 5px;
}
.bcrumb li:hover {
    background-color:#f9f9f9;
}
.bcrumb li a {
    color:#06F;
    text-decoration:none;
}
.bcrumb li a:hover {
    text-decoration:underline;
}
.bcrumb li.last {
    background-image:none;
}
Style 8
.breadcrumb {
    font-family:Tahoma, Geneva, sans-serif;
    font-size:12px;
    margin-top:3px;
    margin-bottom:5px;
    margin-left:20px;
}
.bcrumb {
    padding:5px;
}
.bcrumb li {
    display:inline-block;
    padding:5px 8px;
    margin-left:-1px;
    background: #fceabb; /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZWFiYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjM3JSIgc3RvcC1jb2xvcj0iI2ZjY2Q0ZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjcwJSIgc3RvcC1jb2xvcj0iI2Y4YjUwMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmYmRmOTMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #fceabb 0%, #fccd4d 37%, #f8b500 70%, #fbdf93 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceabb), color-stop(37%, #fccd4d), color-stop(70%, #f8b500), color-stop(100%, #fbdf93)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fceabb 0%, #fccd4d 37%, #f8b500 70%, #fbdf93 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fceabb 0%, #fccd4d 37%, #f8b500 70%, #fbdf93 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fceabb 0%, #fccd4d 37%, #f8b500 70%, #fbdf93 100%); /* IE10+ */
    background: linear-gradient(to bottom, #fceabb 0%, #fccd4d 37%, #f8b500 70%, #fbdf93 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fceabb', endColorstr='#fbdf93', GradientType=0 ); /* IE6-8 */
    -moz-box-shadow: 0px 3px 3px #a4a4a4;
    -webkit-box-shadow: 0px 3px 3px #a4a4a4;
    box-shadow-bottom: 5px #000;
    /* For IE 8 */
   -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color='#d4d4d4')";
   /* For IE 5.5 - 7 */
   filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color='#d4d4d4');
    border-radius:3px;
}
.bcrumb li:hover {
    background: #f6f8f9; /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2ZjhmOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjM4JSIgc3RvcC1jb2xvcj0iI2U1ZWJlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjYxJSIgc3RvcC1jb2xvcj0iI2Q3ZGVlMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY3ZjkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #f6f8f9 0%, #e5ebee 38%, #d7dee3 61%, #f5f7f9 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f6f8f9), color-stop(38%, #e5ebee), color-stop(61%, #d7dee3), color-stop(100%, #f5f7f9)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f6f8f9 0%, #e5ebee 38%, #d7dee3 61%, #f5f7f9 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f6f8f9 0%, #e5ebee 38%, #d7dee3 61%, #f5f7f9 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f6f8f9 0%, #e5ebee 38%, #d7dee3 61%, #f5f7f9 100%); /* IE10+ */
    background: linear-gradient(to bottom, #f6f8f9 0%, #e5ebee 38%, #d7dee3 61%, #f5f7f9 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f8f9', endColorstr='#f5f7f9', GradientType=0 ); /* IE6-8 */
}
.bcrumb li a {
    color:#000;
    text-decoration:none;
}
.bcrumb li a:hover {
    text-decoration:none;
}

If you like this style please subscribe for latest update. Happy blogging!!!

Thursday, January 24, 2013

Thursday, January 24, 2013

Load Disqus Comment When Visitors Want

Disqus is a popular comment management system for blog or website. But it take time to load and increase page load time of website. In this post I'm telling you how to load disqus comment only when visitor want to add or view comment. Initially display only button or link, labeled with  Add a comment or Post a comment, when someone click on that link/button then disqus comment will start to load.

Why ?

  1. This will decrease the page load time, and speed up your website or blog.
  2. Decrease the comment spamming.
Following code for loading disqus comment box when click on button.


<div id='disqus_thread'/>
<div id='disqus_loader' style='text-align: center'>
  <button class='disqusbutton' onclick='load_disqus()'>Add comment</button>
  <script>
    function load_disqus()
    {
      var dsq = document.createElement(&#39;script&#39;); dsq.type = &#39;text/javascript&#39;; dsq.async = true;
      dsq.src = &quot;http://YOUR-DISQUS-SHORT-NAME.disqus.com/embed.js&quot;;
      (document.getElementsByTagName(&#39;head&#39;)[0] || document.getElementsByTagName(&#39;body&#39;)[0]).appendChild(dsq);
      var ldr = document.getElementById(&#39;disqus_loader&#39;);
      ldr.parentNode.removeChild(ldr);
    }
  </script>
</div>
YOUR-DISQUS-SHORT-NAME replace with your disqus short name.

Use CSS for customizing button style. 


.disqusbutton{
    font-family:Verdana, Geneva, sans-serif;
    font-size:14px;
    text-transform:capitalize;
    background-color:#06C;
    color:#f9f9f9;
    text-outline:#000;
    font-weight:900;
    padding:7px;
    border-radius:8px;
    cursor:pointer;
}

Saturday, January 19, 2013


Like Facebook Google launches a new Google Plus Follower widget for Blog and Website. It will help to engage the visitor with your blog or website.
Google Plus provide an two badge for user. One is for Profile Badge and another for Google+ page badge.


Profile badge is for Profile of user, in which someone add you in their circle as friend. Another is Google+ page badge is for create page in Google Plus. Which given an both +1 and follow this page option.
In this tutorial I show you how to install Google+ badge into Blog or Website.

For Blogger

First of all you need to join your Google+ profile with blogger account. If you already join you Google+ profile then follow the steps.
  1. Login to Blogger.
  2. Go to Google+ and select profile or page for which you want to add Gadget.

  3. After selecting go to Layout > Add a Gadget.
  4. Select Google+ Follower Gadget.
  5. Rearrange position of Gadget and save location.

For Website

For creating an badge for website, Go to Google+ badge creator page. You see the following screen (Click for large view)


Enter your Full Google Plus URL(if you logged in then select Google+ user), select type of badge like icon, small or standard.Width of badge. Color theme like Light or Dark.
After that copy code paste into you website.

I hope this article help you. If any problem feel free to ask.

Blogger and Google+ are the product of Google Inc. So It is easy to upgrade your blogger profile to Google plus profile. Google+ profile having more information than blogger profile like your work, designation, city, your friends circle and much more. When you upgrade your blogger profile then all information share with your blogger account which help Google for better search result. Also author profile picture in Google search result is display from Google+ profile picture.
In this post I'm telling you How to upgrade blogger profile to Google plus profile step by step.

  1. Login to your Blogger account.
  2. Go to Google+ then you find following screen,

  3. Click on Upgrade to Google+
  4. Now you see the following screen, mention that your blogger profile change to Google+ profile.


  5. Click on SWITCH NOW button.
  6. Now Select the blog for update profile to Google+ and Click ADD BLOGS.


  7. When you go to Google+ option in blogger you can see Google+ profile is attached with your blogger.

I hope this article help you. If you have any problem feel free to ask. Happy Blogging.

Friday, January 18, 2013


Google Analytic provide a facility for make tracking of visitor narrow according to segment. Tracking visitor is very important, because we need to know how visitors behave on website.  Google Analytic provide a default segments (new/returning visitors, bounce/non-bounce visitor, paid/non-paid visitors) , which provide an overall information about visitors behavior.
For tracking visitor in user defined format, Google analytic provide a custom segment option. In custom segment, user create a custom user can narrow visitor search according to many factors like browser type, country/territory/region, landing/exit page, etc. There are 100+ variables are available for creating custom segment.
In this post I show you how to create a custom segment and narrow visitor tracking.
  1. Go to Standard Reporting > Advance Segments.


  2. After click on Advance Segment you see window which containing a default segments, to create custom segment click on “+ New Custom Segment“at right bottom.

  3. After this Custom Segment window open as display below.


    • In this segment you can include or exclude result.
    • Search your variable according to 100+ variables.
    • Use more than one variable using 'OR' and 'AND' statement.
  4. Click on Save Segment. When apply this segment result appear according to your segment and applied segment display as below.

I hope this article is help you for track visitor according to your need.

Monday, January 14, 2013

In this post I am presenting seven style for popular post widget in blogger. First you need to add Popular post widget in blog. For that, Go to Layout >Add a Gedget, then select Popular Post widget. Then uncheck image thumbnail and snippet. If you all ready have a popular post widget then uncheck image thumbnail and snippet.


Next, some time header of popular post outside the div where we apply style. So you need to put this header under that div. For that, Go to Template > Edit HTML > Check Expand Widget Template and Search with the name given to Popular widget. Which is look like this,


<b:widget id='PopularPosts1' locked='false' title='Popular Posts' type='PopularPosts'>
<b:includable id='main'>  
  <b:if cond='data:title'><h2><data:title/></h2></b:if>        
  <div class='widget-content popular-posts'>
    .    
    .
    .
    .
  </div>
</b:includable>
</b:widget>

<b:if cond='data:title'><h2><data:title/></h2></b:if> if this code is out side the div display in yellow then cut and paste inside that div.
Now when you apply style to widget then this will apply to header of widget also.
Next, find below code
]]></b:skin>
and copy the css code of style and paste above it.

Style 1

.popular-posts {
    background-color:#efefef;
    border-radious:5px;
    -webkit-box-shadow: 0px 3px 5px 1px #dadada;
    box-shadow: 0px 3px 5px 1px #dadada;
    padding:10px 10px 10px 15px;
    font-family:Georgia, "Times New Roman", Times, serif;
}
.popular-posts h2 {
    font-family:Tahoma, Geneva, sans-serif;
    height:25px;
    margin-top:0px;
    margin-left:20px;
    margin-bottom:15px;
    font-size:14px;
    color:#000;
}
.popular-posts ul li {
    list-style:disc;
    margin-bottom:5px;
}
.popular-posts ul li a {
    color:#000;
}
.popular-posts ul li a:hover {
    color:blue;
    text-decoration:underline;
}

Style 2 

.popular-posts {
    background-color:#fff;
    border-radious:5px;
    -webkit-box-shadow: 0px 3px 5px 1px #dadada;
    box-shadow: 0px 3px 5px 1px #dadada;
}
.popular-posts h2 {
    font-family:Tahoma, Geneva, sans-serif;
    margin-top:1px;
    height:25px;
    margin-bottom:10px;
    font-size:14px;
    color:#f4f4f4;
    background-color:#5a77a0;
    height:25px;
    border-bottom:#163b70 solid 1px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    padding:8px 0 0 20px;
}
.popular-posts ul {
    margin:10px 10px 15px 10px;
    font-family:Georgia, "Times New Roman", Times, serif;
}
.popular-posts ul li {
    margin-bottom:5px;
    vertical-align:middle;
    list-style:square;
}
.popular-posts ul li a {
    color:#000;
}
.popular-posts ul li a:hover {
    color:blue;
    text-decoration:underline;
}

Style 3

.popular-posts {
    background-color:#fff;
    border-radious:5px;
    -webkit-box-shadow: 0px 3px 5px 1px #dadada;
    box-shadow: 0px 3px 5px 1px #dadada;
    padding:0px;
}
.popular-posts h2 {
    font-family:Tahoma, Geneva, sans-serif;
    margin-top:1px;
    height:25px;
    margin-bottom:10px;
    font-size:14px;
    color:#f4f4f4;
    background-color:#5a77a0;
    height:25px;
    border-bottom:#163b70 solid 1px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    padding:8px 0 0 20px;
}
.popular-posts ul {
    margin:10px 0 15px 0px;
    font-family:Georgia, "Times New Roman", Times, serif;
    list-style-type: none;
}
.popular-posts ul li {
    padding-left:28px !important;
    margin-bottom:5px;
    margin-left:-15px;
}
.popular-posts ul li:nth-child(odd) {
    background-color:#f4f4f4;
}
.popular-posts ul li a {
    color:#000;
}
.popular-posts ul li a:hover {
    color:blue;
    text-decoration:underline;
}

Style 4

.popular-posts {
    padding:0px;
}
.popular-posts h2 {
    font-family:Tahoma, Geneva, sans-serif;
    color:#000;
    margin-top:1px;
    height:25px;
    margin-bottom:10px;
    font-size:14px;
    height:25px;
    padding-top:8px;
    text-align:center;
}
.popular-posts ul {
    margin:10px 0 15px 0px;
    font-family:Georgia, "Times New Roman", Times, serif;
    list-style-type: none;
}
.popular-posts ul li {
    padding-left:20px !important;
    margin-bottom:5px;
    margin-left:-15px;
    border:#dfdfdf solid 1px;
    border-radius:5px;
}
.popular-posts ul li:hover {
    background-color:#f4f4f4;
}
.popular-posts ul li a {
    color:#000;
    text-decoration:none;
}
.popular-posts ul li a:hover {
    text-decoration:none;
}

Style 5

.popular-posts {
    padding:0px;
}
.popular-posts h2 {
    font-family:Tahoma, Geneva, sans-serif;
    color:#000;
    margin-top:1px;
    height:25px;
    margin-bottom:10px;
    font-size:14px;
    height:25px;
    padding-top:8px;
    padding-left:28px;
}
.popular-posts ul {
    margin:10px 0 15px 0px;
    font-family:Georgia, "Times New Roman", Times, serif;
    list-style-type: none;
}
.popular-posts ul li {
    padding-left:20px !important;
    margin-bottom:10px;
    margin-left:-15px;
    border:#dfdfdf solid 1px;
    background-color:#f4f4f4;
    -webkit-box-shadow: 0px 3px 5px 1px #dadada;
    box-shadow: 0px 3px 5px 1px #dadada;
    list-style:none;
}
.popular-posts ul li:hover {
    -webkit-box-shadow: 0px 0px 0px 0px #dadada;
    box-shadow: 0px 0px 0px 0px #dadada;
}
.popular-posts ul li a {
    color:#000;
    text-decoration:none;
}
.popular-posts ul li a:hover {
    text-decoration:none;
}

Style 6

.popular-posts {
    padding:0px;
}
.popular-posts h2 {
    font-family:Tahoma, Geneva, sans-serif;
    color:#000;
    margin-top:1px;
    height:25px;
    margin-bottom:10px;
    font-size:14px;
    height:25px;
    padding-top:8px;
    padding-left:28px;
}
.popular-posts ul {
    margin:10px 0 15px 0px;
    font-family:Georgia, "Times New Roman", Times, serif;
    list-style-type: none;
}
.popular-posts ul li {
    margin-bottom:10px;
    margin-left:-15px;
    list-style:disc;
    border-bottom:#dedede solid 1px;
}
.popular-posts ul li:hover {
    list-style:circle;
}
.popular-posts ul li a {
    color:blue;
    text-decoration:none;
}
.popular-posts ul li a:hover {
    text-decoration:underline;
    color:orange;
}

Style 7

.popular-posts {
    padding:0px;
}
.popular-posts h2 {
    font-family:Tahoma, Geneva, sans-serif;
    color:#000;
    margin-top:1px;
    height:25px;
    margin-bottom:10px;
    font-size:14px;
    height:25px;
    padding-top:8px;
    padding-left:28px;
}
.popular-posts ul {
    margin:10px 0 15px 0px;
    font-family:Georgia, "Times New Roman", Times, serif;
    list-style-type: none;
}
.popular-posts ul li {
    padding-top:15px !important;
    padding-bottom:15px !important;
    padding-left:30px !important;
    margin-left:-15px;
    background: #ffffff url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRKZIrHyBRgy3if7ErQDB6heX5o9S17oMT6o5I1uD5pOff01222Mqq_gSDfamSC3ws81HCJp8x3j66paKNKTJGnRFrxcDqOtn48iK1vVATTt0agFpRq_A2ottl3-s1sJMiu2kNW3OHR-4/h120/asterisk_orange.png) no-repeat 0 10px;
    border-bottom:#999 dotted 2px;
}
.popular-posts ul li:hover {
    background: #ffffff url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgaErK7mHNqRTe4Q2_njIQirjLeOCpmtPAFIDVVwEm-sGUPItTv3P7yZ7JmLnO-xFWHajD5dqoWwhPPHakqbA70zMKLjeEUO0bUSC_N9eTrwt_j_vm8rx08YkeRlrJZrujl9DEyRofPLqs/h120/asterisk_yellow.png) no-repeat 0 10px;
    background-color:#f9f9f9;
}
.popular-posts ul li a {
    color:#000;
    text-decoration:none;
}
.popular-posts ul li a:hover {
    text-decoration:none;
}
If you have any problem then feel free to ask.

Saturday, January 12, 2013

Saturday, January 12, 2013

Earn Money with Disqus Discovery Program


In 2012 disqus introduce new feature discovery. Where discovery promote box is display below comment/content of your post. Discovery promote box look like a related post widget. Discovery promote box display link from your own blog under the name "ALSO ON YOUR SITE" and other link which to be promote under the name "RECOMMENDED FOR YOU". Those links are used to exchange the traffic, someone click on this promoted links you get paid.

How do I join?

To enable discovery promote box on your blog. Go to General > Disqus 2012 and check the "Enable Disqus 2012 feature for your site".


Discovery Level

Discovery provide a four level. This levels are help for up to which level you monetize your blog. 
  1. Just comment
    This option disable your discovery. Disqus comment box is only display if you choose this option.
  2. Increase Traffic
    If you choose this option, only comments from your blog is display in discovery promote box. In this option discovery show the comments from other post from your blog. This will help to increase traffic your blog.
  3. Increased traffic and revenue
    In this options discovery box display an promote links as well as related post from your blog. Promote links is the way of monitize your blog. In this option discovry box is display at the bottom of comments.
  4. Maximum Increased traffic and revenue
    In some cases discovery box display at the top of comment box, if you choose this option. This option will generate more click than third option and maximize you revenue.

Block Promoted Discovery links

Another feature of discovery you control promoted link on your blog, using blocking an particular domain.

Payment Method

Disqus pay via paypal and minimum payout is $100.

Friday, January 4, 2013

Friday, January 04, 2013

About Author Widget for Blogger


Blogger provide a profile widget, contains only a link to Google plus profile. Which is look like ordinary!!! Today I'm presenting an about us widget which having one fixed section for image and second liquid are for description.

This widget can place at the sidebar, bottom of post or in footer of blog. This widget is also SEO friendly. In this added rel="author" attribute for displaying author picture into Google search result. Below given snapshot of widget when your widget resize.
Widget having minimum width up to 300px and minimum height up to 120px.

Installation

Install in Sidebar

  1. Login to Blogger.
  2. Go to Layout > Add a Gadget.
  3. Select HTML/JavaScript Gadget.
  4. Paste Below Code and Save.

<style>
#aboutAuthorGTI {
    width:90%;
    min-width:300px;
    margin-left:auto;
    margin-right:auto;
    min-height:120px;
    padding:3px 3px 10px 3px;
    background-color:#f4f4f4;
    border-radius:3px;
    -webkit-box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
}
#aboutAuthorWrapperGTI {
    padding-left:10px;
}
#authorImageGTI {
    float:left;
}
#authorImageGTI img {
    margin:12px 20px 5px 15px;
    border:#fafafa solid 3px;
    -webkit-box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
}
#authorFollowGTI {
    float:right;
    margin-top:5px;
    height:15px;
    margin-bottom:9px;
}
#authorFollowGTI ul {
    float:right;
    margin-top:0px;
    margin-right:10px;
}
#authorFollowGTI ul li {
    display:inline;
}
#authorInfoGTI {
    clear:right;
}
#authorName a {
    font-family:"Times New Roman", Times, serif;
    clear:right;
    margin-left:5px;
    text-transform:uppercase;
    color:#990000;
    text-decoration:none;
}
#authorName a:hover {
    color:#333333;
}
#authorFullInfoGTI {
    margin-top:5px;
    padding:0 5px 5px 0;
    font-family:Tahoma, Geneva, sans-serif;
    font-size:13px;
    color:#666666;
}
#authorReadMoreGTI {
    float:right;
    margin-right:10px;
    margin-bottom:10px;
}

#authorReadMoreGTI a{
    color:#FF0000;
}
</style>
<div id="aboutAuthorGTI">
  <div id="authorImageGTI"> <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDtGYx8eAk8nrbO5mz_475nHIDIOIILykMorXgjpcLi57z1GZsQlH5rJeRADBQ89d7vULOMMHbp3GCWBY2iwq3Z5ydNqTwIk6IGymiwvAMIkYg8Mtb9jfn6gyTz9SqscKEjKoAcyaSbMk/h120/authorImage.png" width="90" height="90" alt="Author Image" /> </div>
  <div id="aboutAuthorWrapperGTI">
    <div id="authorInfoBoxGTI">
      <div id="authorFollowGTI">
        <ul>
          <li><a href="Facebook Address" rel="nofollow"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiSsEwqcA_sLZOlnsLNsa2jbzOLNZJl5QATGRFnZAL21UPK7vSZhItCGS3F_rbwrvj_rNuTMCAYejVPbkx5p8QLpYsxGwN9sc4J4FtcUx3LYg_TwZYHk61tfCBONq59y916dDoMLB4z1gI/h120/facebook.png" width="20" height="20" alt="Facebook" /></a></li>
          <li><a href="Twitter Address" rel="nofollow"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhM8hjeoAC1sMHXImHZdpQlNfpO8bK5mCMA4TGJmf6cnESq2UjFNnlcokfR_3RAqHfXAe0UqpPE-vjbyjUOErf9vyCznIczbHSq9vtXBdJgOKfecJact0hkcf68TT-bJhwUjsx822_MDH8/h120/twitter.png" width="20" height="20" alt="Twitter" /></a></li>
          <li><a href="Google Plus Address" rel="nofollow"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgyTSEBvfy3TGLbOwNfPPJ9zmCQHEb7aCSusHag6eWPBGMMPcUPWdsojI4oPZzs6mdFQDAK-1FmgdyljIC8_i6pLmwCo8Q2srko9ZlUmzo0DtsEE6nsiW89mQiv6k1jQzPQwWyfRnc2jOI/h120/google-plus.png" width="20" height="20" alt="Google Plus" /></a></li>
        </ul>
      </div>
      <div id="authorInfoGTI">
        <div id="authorName"><a href="Google Plus Profile Link" rel="author">Digvijay Todkar</a></div>
        <div id="authorFullInfoGTI">He is owner of GrowTechInfo.com from Pune, INDIA. He is passionate about blogging. He is a Computer Engineer, Professional Blogger &amp; an addicted Web Developer.<span id="authorReadMoreGTI"><a href="About Us Page Link">know more..</a></span></div>
      </div>
    </div>
  </div>
</div> 

Install Below Post 

  1. Login to Blogger.
  2. Go to Template > Edit HTML.
  3. Check Expand Widget Template.
  4. Search for
    ]]></b:skin>
  5. and Paste below code above it
    #aboutAuthorGTI {
        width:90%;
        min-width:300px;
        margin-left:auto;
        margin-right:auto;
        min-height:120px;
        padding:3px 3px 10px 3px;
        background-color:#f4f4f4;
        border-radius:3px;
        -webkit-box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
        box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
    }
    #aboutAuthorWrapperGTI {
        padding-left:10px;
    }
    #authorImageGTI {
        float:left;
    }
    #authorImageGTI img {
        margin:12px 20px 5px 15px;
        border:#fafafa solid 3px;
        -webkit-box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
        box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
    }
    #authorFollowGTI {
        float:right;
        margin-top:5px;
        height:15px;
        margin-bottom:9px;
    }
    #authorFollowGTI ul {
        float:right;
        margin-top:0px;
        margin-right:10px;
    }
    #authorFollowGTI ul li {
        display:inline;
    }
    #authorInfoGTI {
        clear:right;
    }
    #authorName a {
        font-family:"Times New Roman", Times, serif;
        clear:right;
        margin-left:5px;
        text-transform:uppercase;
        color:#990000;
        text-decoration:none;
    }
    #authorName a:hover {
        color:#333333;
    }
    #authorFullInfoGTI {
        margin-top:5px;
        padding:0 5px 5px 0;
        font-family:Tahoma, Geneva, sans-serif;
        font-size:13px;
        color:#666666;
    }
    #authorReadMoreGTI {
        float:right;
        margin-right:10px;
        margin-bottom:10px;
    }
    
    #authorReadMoreGTI a{
        color:#FF0000;
    }
  6. Search for
    <div class='post-footer-line post-footer-line-1'>
  7. and paste below code after above code
     <b:if cond='data:blog.pageType == &quot;item&quot;'>
      <div id="aboutAuthorGTI">
        <div id="authorImageGTI"> <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDtGYx8eAk8nrbO5mz_475nHIDIOIILykMorXgjpcLi57z1GZsQlH5rJeRADBQ89d7vULOMMHbp3GCWBY2iwq3Z5ydNqTwIk6IGymiwvAMIkYg8Mtb9jfn6gyTz9SqscKEjKoAcyaSbMk/h120/authorImage.png" width="90" height="90" alt="Author Image" /> </div>
        <div id="aboutAuthorWrapperGTI">
          <div id="authorInfoBoxGTI">
            <div id="authorFollowGTI">
              <ul>
                <li><a href="Facebook Address" rel="nofollow"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiSsEwqcA_sLZOlnsLNsa2jbzOLNZJl5QATGRFnZAL21UPK7vSZhItCGS3F_rbwrvj_rNuTMCAYejVPbkx5p8QLpYsxGwN9sc4J4FtcUx3LYg_TwZYHk61tfCBONq59y916dDoMLB4z1gI/h120/facebook.png" width="20" height="20" alt="Facebook" /></a></li>
                <li><a href="Twitter Address" rel="nofollow"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhM8hjeoAC1sMHXImHZdpQlNfpO8bK5mCMA4TGJmf6cnESq2UjFNnlcokfR_3RAqHfXAe0UqpPE-vjbyjUOErf9vyCznIczbHSq9vtXBdJgOKfecJact0hkcf68TT-bJhwUjsx822_MDH8/h120/twitter.png" width="20" height="20" alt="Twitter" /></a></li>
                <li><a href="Google Plus Address" rel="nofollow"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgyTSEBvfy3TGLbOwNfPPJ9zmCQHEb7aCSusHag6eWPBGMMPcUPWdsojI4oPZzs6mdFQDAK-1FmgdyljIC8_i6pLmwCo8Q2srko9ZlUmzo0DtsEE6nsiW89mQiv6k1jQzPQwWyfRnc2jOI/h120/google-plus.png" width="20" height="20" alt="Google Plus" /></a></li>
              </ul>
            </div>
            <div id="authorInfoGTI">
              <div id="authorName"><a href="Google Plus Profile Link" rel="author">Digvijay Todkar</a></div>
              <div id="authorFullInfoGTI">He is owner of GrowTechInfo.com from Pune, INDIA. He is passionate about blogging. He is a Computer Engineer, Professional Blogger &amp; an addicted Web Developer.<span id="authorReadMoreGTI"><a href="About Us Page Link">know more..</a></span></div>
            </div>
          </div>
        </div>
      </div>
    </b:if>
  8. Save Template

Customization

  • https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDtGYx8eAk8nrbO5mz_475nHIDIOIILykMorXgjpcLi57z1GZsQlH5rJeRADBQ89d7vULOMMHbp3GCWBY2iwq3Z5ydNqTwIk6IGymiwvAMIkYg8Mtb9jfn6gyTz9SqscKEjKoAcyaSbMk/h120/authorImage.png replace with author image URL
  • Facebook Address replace with your Facebook page URL.
  • Twitter Address replace with your twitter URL.
  • Google Plus Address replace with your Google Plus URL.
  • Information replace with your content.
  • About Us Page Link replace with your About Us page link. 
If you get any error during installation, feel free to ask. Happy Blogging.

Thursday, January 3, 2013

Thursday, January 03, 2013

Increase Traffic of Blog with Google trends


Google provide a fantastic tool - for search "How people can search in Google?" - Google Trends. Google trend given a two option, explore trends and hot searches. Explore trends given an information of search from 2004 to today, while hot searches given an information about recent high searched query. Explore trends result can filter according to country, time period, categories, type of search(web, image, video, product). Explore trends updated daily while hot search updated hourly.

 

Search Behavior and topic selection 

Google provide a search hint for user and most of the people use this hint for search. For example, if you try to search you tube in Google it will display a related search query in hint like, youtube downaloader, youtube to mp3, and many more. All this query are display according to how much that query searching, searching percentage it may increase or decreasing any query popularity. This query popularity you can find using Google Trend. Explore trends given you topic options related your category based on past search result, while hot search given you topic for current search queries.


Google trend provide a related search query, which will help you for topic selection. From above I choose a topic "Top 10 youtube downloader tools" or "How to convert youtube video to mp3".

Diverting Traffic

Hot search in Google trends provided a current maximum search query and if you start type query in Google search box it appears as hint. So write a topic on that subject. Main problem is that indexing. I write topic, but I need to wait until Google bot crawled my post and indexing and then traffic is comes to my blog. Solution is commenting, Go to first result, leave your comment with your post link. It is possible that link give a traffic and if it is dofollow that may be your post is crawled fast.

I hope this post will help your to bring more traffic to your blog. If you like share this post.
back to top