Tampilkan postingan dengan label Blogger Widget. Tampilkan semua postingan
Tampilkan postingan dengan label Blogger Widget. Tampilkan semua postingan

Old Iphone Navigation Tab Menu For Blogger Blog

Diposting oleh Unknown

Iphone_navigation_menu

There are many ways to approach navigation on your website and they all have their pros and cons. We have the top horizontal navigation bar, which can limit the number of links you can have before you have to resort to sub menus which, in my opinion, aren�t the best � but if you�re only looking to keep a couple of items in your navigation bar, this could be the one for you. Another approach is the vertical sidebar menu, but a drawback of this approach is that users can become overwhelmed when sub menus start popping out from all over the place. Finally, there�s the tab bar navigation system � the problem with this approach is that it takes a lot more time to design but if you design it well, boy is it good.

 

Live Preview

 

How to add it to blogger

1. Go to Layout > Add A Gadget and select HTML/JavaScript gadget.

2. Copy the HTML link and paste it inside the content box.

 

/* Old */
.old {
       width: 960px;
       height: auto;
}

.old ul {
    display: inline-block;
    outline: none;
    cursor: pointer;
    text-align: center;
}

.old ul li {
    float: left;
    list-style: none;
}

.old ul li a {
    font: bold 12px/100% "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
    padding: 11px 35px;
    text-decoration: none;
    color: rgba(0,0,0,.8);
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
    background: -webkit-linear-gradient(top, #cacaca, #848484);
    background: -moz-linear-gradient(top, #cacaca, #848484);
    background: -ms-linear-gradient(top, #cacaca, #848484);
    background: -o-linear-gradient(top, #cacaca, #848484);
    background: linear-gradient(to bottom, #cacaca, #848484);
}

.old ul li a:before {
    border-left: 1px solid rgba(255,255,255,.1);   
    content: "";
    padding: 10px 35px;
    margin: 0 -35px;
    position: relative;
}

.old ul li a:after {
    border-right: 1px solid rgba(255,255,255,.1);
        box-shadow: 1px 0px 0px rgba(0,0,0,.5);
    content: "";
    padding: 10px 35px;
    margin: 0 -35px;
    position: relative;
}

.old ul li:last-child a:after {border: none; box-shadow: none;}

.old ul li:first-child a {-moz-border-radius: 5px 0 0 5px; border-radius: 5px 0 0 5px;}
.old ul li:last-child a {-moz-border-radius: 0 5px 5px 0; border-radius: 0 5px 5px 0;}

.old ul li a:hover {
    background: -webkit-linear-gradient(top,  #929292,  #535353);
    background: -moz-linear-gradient(top,  #929292,  #535353);
    background: -ms-linear-gradient(top,  #929292,  #535353);
    background: -o-linear-gradient(top,  #929292,  #535353);
    background: linear-gradient(to bottom,  #929292,  #535353);
}

.old ul li a:active {
    -webkit-box-shadow: inset 0 5px 10px rgba(0,0,0,.5);
    -moz-box-shadow: inset 0 5px 10px rgba(0,0,0,.5);
    box-shadow: inset 0 5px 10px rgba(0,0,0,.5);
}

    <div class="old">
        <ul>
            <li><a href="#">Home</a></li>
            <li><a href="#">Store</a></li>
            <li><a href="#">Mac</a></li>
            <li><a href="#">iPod</a></li>
            <li><a href="#">iPhone</a></li>
            <li><a href="#">iPad</a></li>
            <li><a href="#">iTunes</a></li>
            <li><a href="#">Support</a></li>
        </ul>
    </div>

 

You can apply this not only to navigation bars but also to buttons that ask for Download files or take users to social network pages.

To rename the category, simply replace Home with your own text. As for the link, just replace  # with the Page intended URL. Hope you enjoyed with this tutorial, don�t forget to tell thanks and leave a comment :) Enjoy..!!

More aboutOld Iphone Navigation Tab Menu For Blogger Blog

Stay Tuned Social Profiles Plugin With Tooltip For Blogger Blog

Diposting oleh Unknown

Social_profiles_with_tooltipIn today�s tip we�ll show you how to create some simple, animated tooltips using CSS transitions and the pseudo-classes :before and :after. For the little pointer, we will style the pseudo-elements :before and :after. We will style them the same way and create a triangle by using transparent left and right borders. The :before pseudo-element will serve as a shadow for the :after pseudo-element, so we�ll give it a blue color. After the growth and advance development in Social media websites, lots of peoples are showing their interest in appearing their website with their favorite social networking website i.e. Facebook, Google Plus, Twitter and etc. Tooltips is the fancy addition in the Social networking Widgets. Whenever, your visitors would place their pointer on a social icon a small box will appear with information about the specific item that is being hovered.

 

Live Preview

 

How to Install Tooltip Social Profile Plugin

Just follow the steps as mention below.

1. Go to Blogger Dashboard >> Template >> Edit HTML >> Proceed

2. Now in the template search for ]]></b:skin> and just above it paste the following  CSS Code.

#social_profiles-wrap{
    width: 450px;
  height: 80px;
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjN-cgIQ7i9akRc_ZQMfnIgrBZFGVwQsUs6-1Ds6O6EwxVV79Y_cob3VdZRm6mE2jwjdN5UHqUF_JUbZRCaOKO-zZrFPcYhBnDrKUrwRpO7rZgdyY5OJ3LAYENyUPSwCYjy6JGlTsl9Vg_P/s1600/Bg.png") no-repeat 15px 10px;
  padding:22px 0px 15px 100px;
  margin: 14px auto;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-box-shadow: 1px 0px 0px #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);
  -moz-box-shadow: 1px 0px 0px #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);
  box-shadow: 1px 0px 0px #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);
}
.social_profiles{
  height: auto;
  margin: 0 auto;  
}
.social_profiles li{
  float: left;
  list-style: none; 
}
.social_profiles li a {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  margin-top: 20px;
  outline: none;
  position: relative;
  z-index: 2;
  text-indent: -9000px;
  text-decoration: none;
}

.social_profiles li .facebook {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVpUmZaLPn4kk2opz73v6JkYRxZ1kXPV4-8eRSphtgZVCcoCp-W1XyXoGs48DfiGzYLqX829gGv3-KAxjWwXWq5f4cHb3eOQwiM3Pyw75RuiO_u1x2HUBmdQ-uwpHb4AJCX3P03y755s2U/s1600/social_sprite.png") no-repeat;
}

.social_profiles li .twitter {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVpUmZaLPn4kk2opz73v6JkYRxZ1kXPV4-8eRSphtgZVCcoCp-W1XyXoGs48DfiGzYLqX829gGv3-KAxjWwXWq5f4cHb3eOQwiM3Pyw75RuiO_u1x2HUBmdQ-uwpHb4AJCX3P03y755s2U/s1600/social_sprite.png") no-repeat 0px -45px;
}
.social_profiles li .gplus {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVpUmZaLPn4kk2opz73v6JkYRxZ1kXPV4-8eRSphtgZVCcoCp-W1XyXoGs48DfiGzYLqX829gGv3-KAxjWwXWq5f4cHb3eOQwiM3Pyw75RuiO_u1x2HUBmdQ-uwpHb4AJCX3P03y755s2U/s1600/social_sprite.png") no-repeat 0px -90px;
}
.social_profiles li .pinterest {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVpUmZaLPn4kk2opz73v6JkYRxZ1kXPV4-8eRSphtgZVCcoCp-W1XyXoGs48DfiGzYLqX829gGv3-KAxjWwXWq5f4cHb3eOQwiM3Pyw75RuiO_u1x2HUBmdQ-uwpHb4AJCX3P03y755s2U/s1600/social_sprite.png") no-repeat 0px -135px;
}
.social_profiles li .rss {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVpUmZaLPn4kk2opz73v6JkYRxZ1kXPV4-8eRSphtgZVCcoCp-W1XyXoGs48DfiGzYLqX829gGv3-KAxjWwXWq5f4cHb3eOQwiM3Pyw75RuiO_u1x2HUBmdQ-uwpHb4AJCX3P03y755s2U/s1600/social_sprite.png") no-repeat 0px -180px;
}
.social_profiles li .linkedin {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVpUmZaLPn4kk2opz73v6JkYRxZ1kXPV4-8eRSphtgZVCcoCp-W1XyXoGs48DfiGzYLqX829gGv3-KAxjWwXWq5f4cHb3eOQwiM3Pyw75RuiO_u1x2HUBmdQ-uwpHb4AJCX3P03y755s2U/s1600/social_sprite.png") no-repeat 0px -225px;
}
.social_profiles li .tumblr {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVpUmZaLPn4kk2opz73v6JkYRxZ1kXPV4-8eRSphtgZVCcoCp-W1XyXoGs48DfiGzYLqX829gGv3-KAxjWwXWq5f4cHb3eOQwiM3Pyw75RuiO_u1x2HUBmdQ-uwpHb4AJCX3P03y755s2U/s1600/social_sprite.png") no-repeat 0px -270px;
}
.social_profiles li .youtube {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVpUmZaLPn4kk2opz73v6JkYRxZ1kXPV4-8eRSphtgZVCcoCp-W1XyXoGs48DfiGzYLqX829gGv3-KAxjWwXWq5f4cHb3eOQwiM3Pyw75RuiO_u1x2HUBmdQ-uwpHb4AJCX3P03y755s2U/s1600/social_sprite.png") no-repeat 0px -315px;
}
.social_profiles li .mail {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVpUmZaLPn4kk2opz73v6JkYRxZ1kXPV4-8eRSphtgZVCcoCp-W1XyXoGs48DfiGzYLqX829gGv3-KAxjWwXWq5f4cHb3eOQwiM3Pyw75RuiO_u1x2HUBmdQ-uwpHb4AJCX3P03y755s2U/s1600/social_sprite.png") no-repeat 0px -360px;
}

.social_profiles li a span {
  width: 80px;
  height: 20px;
  line-height: 20px;
  padding: 5px;
  left: 50%;
  margin-left: -52px;
  font-family: 'Alegreya SC', Georgia, serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 5px solid #446cb3;
  background: #446cb3;
  text-indent: 0px;
  position: absolute;
  pointer-events: none;
  border-radius: 5%;
  opacity: 0;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
-webkit-transform: translate(35px) rotate(25deg) scale(1.5);
  -moz-transform: translate(35px) rotate(25deg) scale(1.5);
  -o-transform: translate(35px) rotate(25deg) scale(1.5);
  -ms-transform: translate(35px) rotate(25deg) scale(1.5);
  transform: translate(35px) rotate(25deg) scale(1.5);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
 
}
.social_profiles li a span:before,
.social_profiles li a span:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  margin-left: -9px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 11px solid rgba(0,0,0,0.1);
}
.social_profiles li a span:after {
  bottom: -15px;
  margin-top: 6px;
  margin-left: -12px;
  border-top: 10px solid #446cb3;
}
.social_profiles li a:hover span {
  opacity: 0.9;
  bottom: 50px;
  -webkit-transform: translate(0px) rotate(0deg) scale(1);
  -moz-transform: translate(0px) rotate(0deg) scale(1);
  -o-transform: translate(0px) rotate(0deg) scale(1);
  -ms-transform: translate(0px) rotate(0deg) scale(1);
  transform: translate(0px) rotate(0deg) scale(1);
}

Once you have successfully pasted the Style sheet code go ahead and save the template by pressing save button.

 

1. Now according to you need paste the following code where you want to place this widget. For Example Layout >> Add a Gadget >> Edit HTML/JavaScript

2. If you want to show below post then paste the below html code below this tag. "<data: post.body/>"

<div id="social_profiles-wrap">
<ul class="social_profiles">
<li><a class="facebook" href=http://www.facebook.com/mybloggerstricks target="_blank"><span>Facebook</span></a></li>
<li><a class="twitter" href=http://twitter.com/mybloggertriks target="_blank"><span>Twitter</span></a></li>
<li><a class="gplus" href=https://plus.google.com/b/103598710564060829080 target="_blank"><span>Google Plus</span></a></li>
<li><a class="pinterest" href=http://www.pinterest.com/mybloggertrickx target="_blank"><span>Pinterest</span></a></li>
<li><a class="rss" href=http://feeds.feedburner.com/mybloggerstrick target="_blank"><span>RSS</span></a></li>
<li><a class="linkedin"href=http://www.linkedin.com/in/mybloggertricks target="_blank"><span>LinkedIn</span></a></li>
<li><a class="tumblr" href=http://www.thumblr.com/mybloggertricks target="_blank"><span>Tumblr</span></a></li>
<li><a class="youtube" href=http://www.youtube.com/mybloggertricks target="_blank"><span>Youtube</span></a></li>
<li><a class="mail" href=Mailto:tricks.blogger@gmail.com target="_blank"><span>Mail</span></a></li>
</ul></div>

Note:- Change the links in yellow with links to your social profiles.

I hope you enjoyed this little effect and find it useful!..Needless to say, this will only work in browsers that support pseudo-elements and CSS transitions.

More aboutStay Tuned Social Profiles Plugin With Tooltip For Blogger Blog

Artless Social Profile Widget For Blogger And WordPress

Diposting oleh Unknown

Artless_social_profile_widgetToday I'm gonna unleash you one of the best widgets I have ever made, one of the best subscription widget at my blog, I present you the Animated social Subscription Widget for Blogger. No matter about its name but it matters totally awesome when you will see it live. Without one of these your blog simply won�t shine on the right sidebar, and also these are the most attractive social network buttons and suits perfect on any light or dark color website or blogs. As you guys can see even I am using this widget on my blog because it is one my favorites. We also use a sprite instead of individual images.This makes the flip smooth and adds less load time to your blog. I have tutorials for adding them to your sidebar on both Wordpress and Blogger but you could add them to your blog footer or even in a menu.

 

Live Preview

 

How to add it to blogger

1. Go to Blogger Dashboard

2. Click The Drop Down For Your Blog > Choose Layout

3. Click Add A Gadget > Choose HTML/JavaScript 

4. Paste In The Code as shown in the video below :

 

 

<style>

.social-wrap {
margin:0 auto;
padding:0px;
text-decoration: none;
}

.social-wrap ul li {
list-style-type: none;
border-bottom:none;
margin:0 auto;
background: none;
padding:0px;
line-height: 0!important;
}

.social-wrap li a {
margin:5px 3px 0px 0px !important;
padding:0px;
width:50px;
height:50px;
text-indent:-99999px;
float:left;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
}
.social-wrap li a.facebook1 {
background: #314d91 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px 0px;
-webkit-transition:All 0.3s ease-out;
-moz-transition:All 0.3s ease-out;
-o-transition:All 0.3s ease-out;
}
.social-wrap li a.facebook1:hover {
background: #314d91 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -73px;
}
.social-wrap li a.twitter1 {
background: #07beed url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -127px;
-webkit-transition:All 0.3s ease-out;
-moz-transition:All 0.3s ease-out;
-o-transition:All 0.3s ease-out;
}
.social-wrap li a.twitter1:hover {
background: #07beed url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -204px;
}
.social-wrap li a.google-p1 {
background:#a7291b url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -254px;
-webkit-transition:All 0.3s ease-out;
-moz-transition:All 0.3s ease-out;
-o-transition:All 0.3s ease-out;
}
.social-wrap li a.google-p1:hover {
background: #a7291b url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -330px;
}
.social-wrap li a.rss1 {
background:#ffaa31 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -381px;
-webkit-transition:All 0.3s ease-out;
-moz-transition:All 0.3s ease-out;
-o-transition:All 0.3s ease-out;
}
.social-wrap li a.rss1:hover {
background: #ffaa31 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -454px;
}

.social-wrap li a.pinit1 {
background:#cb2027 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -508px;
-webkit-transition:All 0.3s ease-out;
-moz-transition:All 0.3s ease-out;
-o-transition:All 0.3s ease-out;
}
.social-wrap li a.pinit1:hover {
background: #cb2027 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -580px;
}

.social-wrap li a.linkdin1 {
background:#1698E3 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -635px;
-webkit-transition:All 0.3s ease-out;
-moz-transition:All 0.3s ease-out;
-o-transition:All 0.3s ease-out;
}
.social-wrap li a.linkdin1:hover {
background: #1698e3 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -711px;
}


</style>

<div class='social-wrap'>
<ul>
<li><a class='facebook1' href='http://www.facebook.com/mybloggerstricks' target='_blank' title='Facebook' rel='nofollow'></a></li>
<li><a class='twitter1' href='http://twitter.com/mybloggertriks' target='_blank' title='Twitter' rel='nofollow'></a></li>
<li><a class='google-p1' href='https://plus.google.com/b/103598710564060829080' target='_blank' title='Google Plus' rel='nofollow'></a></li>
<li><a class='rss1' href='http://feeds.feedburner.com/mybloggerstrick' target='_blaank' title='RSS Feed' rel='nofollow'></a></li>
<li><a class='pinit1' href='http://www.pinterest.com/mybloggertrickx' target='_blank' title='Pinterest' rel='nofollow'></a></li>
<li><a class='linkdin1' href='http://www.linkedin.com/in/mybloggertricks' target='_blank' title='Linkedin' rel='nofollow'></a></li>
</ul>
</div>

Note:- Change the links in yellow with links to your social profiles.

 

Adding The Social Icons To Wordpress

In Your Wordpress Dashboard Click 'Apperance' > 'Widgets' > Add A text Widget to your sidebar and paste code in content area:

 

<style>

.social-wrap {
margin:0 auto;
padding:0px;
text-decoration: none;
}

.social-wrap ul li {
list-style-type: none;
border-bottom:none;
margin:0 auto;
background: none;
padding:0px;
line-height: 0!important;
}

.social-wrap li a {
margin:5px 3px 0px 0px !important;
padding:0px;
width:50px;
height:50px;
text-indent:-99999px;
float:left;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
}
.social-wrap li a.facebook1 {
background: #314d91 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px 0px;
-webkit-transition:All 0.3s ease-out;
-moz-transition:All 0.3s ease-out;
-o-transition:All 0.3s ease-out;
}
.social-wrap li a.facebook1:hover {
background: #314d91 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -73px;
}
.social-wrap li a.twitter1 {
background: #07beed url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -127px;
-webkit-transition:All 0.3s ease-out;
-moz-transition:All 0.3s ease-out;
-o-transition:All 0.3s ease-out;
}
.social-wrap li a.twitter1:hover {
background: #07beed url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -204px;
}
.social-wrap li a.google-p1 {
background:#a7291b url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -254px;
-webkit-transition:All 0.3s ease-out;
-moz-transition:All 0.3s ease-out;
-o-transition:All 0.3s ease-out;
}
.social-wrap li a.google-p1:hover {
background: #a7291b url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -330px;
}
.social-wrap li a.rss1 {
background:#ffaa31 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -381px;
-webkit-transition:All 0.3s ease-out;
-moz-transition:All 0.3s ease-out;
-o-transition:All 0.3s ease-out;
}
.social-wrap li a.rss1:hover {
background: #ffaa31 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -454px;
}

.social-wrap li a.pinit1 {
background:#cb2027 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -508px;
-webkit-transition:All 0.3s ease-out;
-moz-transition:All 0.3s ease-out;
-o-transition:All 0.3s ease-out;
}
.social-wrap li a.pinit1:hover {
background: #cb2027 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -580px;
}

.social-wrap li a.linkdin1 {
background:#1698E3 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -635px;
-webkit-transition:All 0.3s ease-out;
-moz-transition:All 0.3s ease-out;
-o-transition:All 0.3s ease-out;
}
.social-wrap li a.linkdin1:hover {
background: #1698e3 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKcqhS-VinkklxxbKz6arjVuY5y99CeUyCuU5A1ik7qdn5_Dkfc3U_5aRa0-PBc6HRMfu8NFuAXGGXYPlfw4TTMo3mU-1lCcrvhTyXvl-xRpnML6EZ0UVH5ZvsRInNM1qQCggCOyD_DJ3f/s1600/social_sprites.png) no-repeat 0px -711px;
}


</style>

<div class='social-wrap'>
<ul>
<li><a class='facebook1' href='http://www.facebook.com/mybloggerstricks' target='_blank' title='Facebook' rel='nofollow'></a></li>
<li><a class='twitter1' href='http://twitter.com/mybloggertriks' target='_blank' title='Twitter' rel='nofollow'></a></li>
<li><a class='google-p1' href='https://plus.google.com/b/103598710564060829080' target='_blank' title='Google Plus' rel='nofollow'></a></li>
<li><a class='rss1' href='http://feeds.feedburner.com/mybloggerstrick' target='_blaank' title='RSS Feed' rel='nofollow'></a></li>
<li><a class='pinit1' href='http://www.pinterest.com/mybloggertrickx' target='_blank' title='Pinterest' rel='nofollow'></a></li>
<li><a class='linkdin1' href='http://www.linkedin.com/in/mybloggertricks' target='_blank' title='Linkedin' rel='nofollow'></a></li>
</ul>
</div>

Note:- Change the links in yellow with links to your social profiles.

And that's it, thanks for your comment Ger I hope you like the icons and use them on your blog. Drop your comments and questions below.

More aboutArtless Social Profile Widget For Blogger And WordPress

Blogger Recent Posts Widget With 3D And Metro Style Border

Diposting oleh Unknown

Recent_post_widget_with_3d_borderRecent Posts is a very powerful widget for blogger, which displays your recent posts with thumbnails. It�s the perfect solution for online magazines or simple blogs and it comes with customization options available. You can dynamically re-size thumbnails to any desired dimension. Displaying a list of the recent posts in your sidebar is a great way to keep your visitors busy. There are lots of recent posts gadgets you can use but the one we will be covering in this post will definitely grab the attention of people on your blog. This Widget originally made by Blogger plugins.org and we share customized version by adding some CSS code. Installation of this this is very easy you just need to add html/JavaScript gadget and drop it where you want to show recent posts. So let's start the tutorial.

 

Live Preview

 

How to add it to blogger blog

  1. Go to blogger layout section
  2. Click Add A Gadget.
  3. In Add A Gadget window, select HTML/JavaScript .
  4. Copy the code below and paste it inside the content box.
  5. Save the gadget.
  6. Drag the gadget and reposition it where you want to show recent posts.
  7. Click Save button (top right hand corner).

 

<style>
#bp_recent {
width:300px;
padding: 5px;
color: #999;
font-size: 14px;
text-align:justify;
}

#bp_recent img {
width: 70px;
height: auto;
border-top:5px groove #00a4ef !important;
border-bottom:5px groove #ffb900 !important;
border-right:5px groove #7fba00 !important;
border-left:5px groove #f25022 !important;

webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);
box-shadow:1px 1px 1px rgba(0,0,0,0.2);
}

#bp_recent a{
color: #fff;
font-size: 15px;
text-transformation: uppercase;
margin-bottom: 10px!important;
}

#bp_recent a:hover {
text-decoration: underline;
}

</style>
<div id='bp_recent'></div>
<script type="text/javascript" src="http://yourjavascript.com/401413211131/recentposts-orig.js"></script>
<script style='text/javascript'>
var numberOfPosts = 9;
var showPostDate = false;
var showSummary = false;
var summaryLength = 0;
var titleLength = 0;
var showCommentCount = false;
var showThumbs = true;
var showNoImage = true;
var imgDim = 55;
var imgFloat = 'left';
var myMargin = 5;
var mediaThumbsOnly = true;
var showReadMore = false;
var readMore = 'Read More';
</script>
<script src='HERE_IS_YOUR_BLOG_URL/feeds/posts/summary?max-results=10&orderby=published&alt=json-in-script&callback=bprecentpostswiththumbnails'></script>

 

Widget Customizations

1. Simply replace the http://www.blogstable.com with your own blog address (Url) which is include "http://".

2. Widget comes with fixed width you can also edit width by changing following value (300 to 350 e.g.).

width: 300px;

 

Need any help

Do you have any query regarding these tutorial on how to add recent posts widget to blogger? We're always there to put you through. Post your queries via comment and we'll get back to you as soon as possible.  We've done our own part by sharing these informative tutorial with you. So, it's now your turn to show appreciation by leaving a useful comment below.You don't want to miss any of our future updates? Subscribe to our rss feeds to get all our latest updates delivered directly to your email inbox.

More aboutBlogger Recent Posts Widget With 3D And Metro Style Border

Email Popup Subscription Box For Blogger Blog

Diposting oleh Unknown

ID-10075895Everybody knows the importance of RSS feeds. So its better to give the readers an option to subscribe to your blog feed by email. Another JQuery Widget with beautiful look, as before I have also share Facebook Popup and Twitter Follower Popup Widget for blogger user. But today I bring in this post another beautiful widget with JQuery light box. In this widget visitors can subscribe you blog�s daily updates via RSS FEED. So here is the complete instructions for how to install the email subscription widget.

 

Live Preview

 

How to install email popup subscription box

You can Install This Widget Easily in your Blog By Following These Simple Steps....
Before you edit any template it's better to keep a Backup. So First Backup your Template.

1. Go to your Blogger Dashboard>>Template>>Edit Html

2. Find following code in your template.

</head>

3. and paste the following code before/above </head>

<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js'></script><script src='http://yourjavascript.com/69231961363/jquery-colorbox-min.js' type='text/javascript'/>
<script type='text/javascript'>
jQuery(document).ready(function(){
if (document.cookie.indexOf(&#39;visited=true&#39;) == -1) {
var setDays = 1000*60*60*24*7;
var expires = new Date((new Date()).valueOf() + setDays);
document.cookie = &quot;visited=true;expires=&quot; + expires.toUTCString();
$.colorbox({width:&quot;395px&quot;, height:&quot;435px&quot;, inline:true, href:&quot;#email-popup&quot;});
}});</script>

Note:- *7 Setting this value will effect cookie refreshment. I have set the Subscription box to appear once to the visitor and Subscription box will appear again after 1 week. If you want to display after a 1 day then set 7 to 1. if you set the value 1 then it Must  annoying your Blog regular readers. So Leave it By Default and follow the next step.

 

4. Now Search for </b:skin>.   ( Note:- Click the black arrow to expand the code. )

#subscriptionwrap {
    width: 600px;
    background: #e9e9e9;
    padding: 15px;
    margin: 14px;
    border: 1px solid #ddd;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 0px #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);
    -moz-box-shadow: 0 1px 0px #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);
    box-shadow: 0 1px 0px #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);
}

.subscriptionbox h4 {
    font-size: 30px;
    font-family: 'Verdana', Arial;
    font-variant: small-caps;
    margin: 0 auto;
    text-align: center;
    line-height: 30px;
    color: #333;
    font-weight: 600;
    text-shadow: 1px 1px 5px #333;
    text-decoration: none !important;
}

.subscriptionbox p {
    font-family: geogia;
    font-style: italic;
    font-size: 26px;
    text-align: center;
    margin: 0px;
    line-height: 30px;
    margin-top: 25px;
    border-bottom: 1px solid #333;
    color: #454545;
    padding-bottom: 20px;
}

.emailbutton1 {
    background: #f7f8f9;
    background: -webkit-linear-gradient(top,#f7f8f9 0%,#e9e9e9 100%);
    background: -moz-linear-gradient(top,#f7f8f9 0%,#e9e9e9 100%);
    background: -o-linear-gradient(top,#f7f8f9 0%,#e9e9e9 100%);
    background: -ms-linear-gradient(top,#f7f8f9 0%,#e9e9e9 100%);
    background: linear-gradient(top,#f7f8f9 0%,#e9e9e9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f7f8f9",endColorstr="#e9e9e9",GradientType=0 );
    border: 1px solid #ddd;
    -webkit-border-top-right-radius: 4px;
    -moz-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -webkit-box-shadow: 0 1px 0 #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);
    -moz-box-shadow: 0 1px 0 #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);
    box-shadow: 0 1px 0 #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);
    color: #888 !important;
    text-shadow: 0 1px 0 #fff;
    line-height: 1.5;
    top: 0px;
    margin: 10px 0 0 -15px;
    cursor: pointer;
    padding: 18px 15px 15px 15px !important;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none !important;
}

.emailbutton1:hover {
    background: #f1f1f1;
    background: -webkit-linear-gradient(top,#f1f1f1 0%,#e0e0e0 100%);
    background: -moz-linear-gradient(top,#f1f1f1 0%,#e0e0e0 100%);
    background: -o-linear-gradient(top,#f1f1f1 0%,#e0e0e0 100%);
    background: -ms-linear-gradient(top,#f1f1f1 0%,#e0e0e0 100%);
    background: linear-gradient(top,#f1f1f1 0%,#e0e0e0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f1f1f1",endColorstr="#e0e0e0",GradientType=0 );
    text-decoration: none !important;
}

.emailinput1 {

       width: 490px !important;

    height: 37px;    padding-right: 30px !important;
    float: left;
    margin: 10px 0 0 0px;
    padding: 8px 40px 8px 10px;
    border: 1px solid #d2d2d2;
    background: #fff;
    font-family: georgia;
    font-style: italic;
    font-size: 16px;
    color: #949494;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    text-decoration: none!important;
}

5. Save your template and you are done second last step! Visit your blog to see it working just perfectly? if everything is working fine then Follow the final step below.

 

6. Now finally find the following code.

</body>

7. and paste the following code before closing </body> tag.

<div style='display:none'>
<div id='email-popup' style='position:scroll; z-index:99999;'>
<div id='subscriptionwrap'>
<div class='subscriptionbox'>
<h4>Ready To Be Make <strong>Elegant Blog</strong></h4>
<p>Subscribe to My Blogger Tricks to enjoy Free Tricks</p>
<form action='http://feedburner.google.com/fb/a/mailverify' class='emailform1' method='post' onsubmit='window.open(&quot;http://feedburner.google.com/fb/a/mailverify?uri=bl0ggertricks&quot;, &quot;popupwindow&quot;, &quot;scrollbars=yes,width=550,height=520&quot;);return true' target='popupwindow'>
<input name='uri' type='hidden' value='bl0ggertricks'/>
<input name='loc' type='hidden' value='en_US'/>
<input class='emailinput1' name='email' onblur='if (this.value == &quot;&quot;) {this.value = &quot;Enter your email...&quot;;}' onfocus='if (this.value == &quot;Enter your email...&quot;) {this.value = &quot;&quot;}' type='text' value='Enter your email...'/>
<input class='emailbutton1' title='' type='submit' value='SignUp'/>
</form>
</div>
</div>
  </div>
  </div>

 

8. Now you need to make these changes in html code.

  • Edit the highlighted yellow text to anything you like. It will appear at the top of the input box.
  • Now replace bl0ggertricks with your Feedburner Email Feed link. You can get it by visiting your feedburner account then navigate to Publicize and then to Email Subscriptions.
  • Replace bl0ggertricks with your feed title. It appear at the end of your feed link. In my case it is <input name='uri' type='hidden' value='bl0ggertricks'/>

9. Save your template and you are all set!

Visit your blogs and see it popping up just fine! Remember that the popup will show only once. To see it again you will first need to delete your browser cookie and then refresh the page to see it appearing again. I just hope you would find this tutorial easy and yet exciting. Please let me know if you need any help. I just hope you can make your strong Twitter Followers growth. Wish you success and peace buddies. Stay updated by subscribing our email news feed or like our facebook page.

 

Image Credit:- FreeDigitalPhotos.net

More aboutEmail Popup Subscription Box For Blogger Blog

Add Twitter Popup Follower Box To Blogger Blog

Diposting oleh Unknown

Twitter_follower_boxNow a days every blog owner thinks to increase his/her blog's traffic and the most popular way to increase blog's traffic is to Share your post on social media Sites like Facebook, Twitter, DiGG etc. So today i have come with Twitter Follower Box Widget for blog owner who run their blog on blogger. It works like and is closely based on Facebook fan/Like box algorithm. The widget designed for get more Twitter Followers. This box has also a close button at the top right corner. Visitor can close this widget by clicking on close button. Popup box widgets really annoy your visitors when they appear again and again, but they help you in developing your blog well when you use them properly. Twitter is a major source of traffic which can send your blog a good traffic flow when you have enough Followers on your Twitter page. To expand your Twitter network and to increase your Twitter Followers, I have brought a very stylish Onetime Twitter Follower Popup Widget for your blogger blog which will appear onetime only and thus it will increase your Twitter Followers dramatically without annoying your visitor. We are again Say Thanks to jacklmoore for providing a juqery light box.

Live Preview

 

How to add it to blogger

You can Install This Widget Easily in your Blog By Following These Simple Steps....
Before you edit any template it's better to keep a Backup.. So First Backup your Template.

1. Go to your Blogger Dashboard>>Template>>Edit Html

2. Find following code in your template.

</head>

 

3. and paste the following code before/above </head>

<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js'></script><script src='http://yourjavascript.com/69231961363/jquery-colorbox-min.js' type='text/javascript'/>
<script type='text/javascript'>
jQuery(document).ready(function(){
if (document.cookie.indexOf(&#39;visited=true&#39;) == -1) {
var setDays = 1000*60*60*24*7;
var expires = new Date((new Date()).valueOf() + setDays);
document.cookie = &quot;visited=true;expires=&quot; + expires.toUTCString();
$.colorbox({width:&quot;395px&quot;, height:&quot;435px&quot;, inline:true, href:&quot;#twitter-popup&quot;});
}});</script>

Note:- *7 Setting this value will effect cookie refreshment. I have set the Follower box to appear once to the visitor and Follower box will appear again after 1 week. If you want to display after a 1 day then set 7 to 1. if you set the value 1 then it Must  annoying your Blog regular readers. So Leave it By Default and follow the next step.

 

4. Now Search for </b:skin>.  Click the black arrow to expand the code.

/* Colorbox Core Style: The following CSS is consistent between example themes and should not be altered. */#colorbox, #cboxOverlay, #cboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
}

#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
    clear: left;
}

#cboxContent {
    position: relative;
}

#cboxLoadedContent {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#cboxTitle {
    margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
    cursor: pointer;
}

.cboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block;
    max-width: none;
    -ms-interpolation-mode: bicubic;
}

.cboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
} /* User Style: Change the following styles to modify the appearance of Colorbox. They are ordered and tabbed in a way that represents the nesting of the generated HTML. */#cboxOverlay {
    background: #000;
}

#colorbox {
    outline: 0;
}

#cboxContent {
    margin-top: 20px;
    background: #000;
}

.cboxIframe {
    background: #fff;
}

#cboxError {
    padding: 50px;
    border: 1px solid #ccc;
}

#cboxLoadedContent {
    border: 5px solid #000;
    background: #fff;
    box-shadow: 3px 3px 3px #fff;
}

#cboxTitle {
    position: absolute;
    top: -20px;
    left: 0;
    color: #ccc;
}

#cboxCurrent {
    position: absolute;
    top: -20px;
    right: 0px;
    color: #ccc;
}

#cboxLoadingGraphic {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihPlxcwcv__SjkQqs0q-zoEL1Oj7eRm8frsWKHPw1OOK0cwEIJSH3exQppTHZuYJVm1R4sTKsw-CdVgbIS5eb88c_Q1viPUd-TQn0XXIkMsZKdxgw_7RrAQ7xWwZn8_OuKl08g5T0avvr5/s32/loading.gif) no-repeat center center;
} /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
    border: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    width: auto;
    background: none;
} /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
    outline: none;
}

#cboxSlideshow {
    position: absolute;
    top: -20px;
    right: 90px;
    color: #fff;
}

#cboxPrevious {
    position: absolute;
    top: 50%;
    left: 5px;
    margin-top: -32px;
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSxJ-idXCmuSXZqhfdNlvsdkpfyUZ_PeYB9XEigbJONoHHm5URiX_Xzv_jxKcQezxpTLXYoinawgpg7ci3SPRoYdFsGUb2o7DT3vq0UEYTVKoSkMMYexiWmk9JcSph48xNVGSONK-eDuTJ/s1600/controls.png) no-repeat top left;
    width: 28px;
    height: 65px;
    text-indent: -9999px;
}

#cboxPrevious:hover {
    background-position: bottom left;
}

#cboxNext {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -32px;
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSxJ-idXCmuSXZqhfdNlvsdkpfyUZ_PeYB9XEigbJONoHHm5URiX_Xzv_jxKcQezxpTLXYoinawgpg7ci3SPRoYdFsGUb2o7DT3vq0UEYTVKoSkMMYexiWmk9JcSph48xNVGSONK-eDuTJ/s1600/controls.png) no-repeat top right;
    width: 28px;
    height: 65px;
    text-indent: -9999px;
}

#cboxNext:hover {
    background-position: bottom right;
}

#cboxClose {
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSxJ-idXCmuSXZqhfdNlvsdkpfyUZ_PeYB9XEigbJONoHHm5URiX_Xzv_jxKcQezxpTLXYoinawgpg7ci3SPRoYdFsGUb2o7DT3vq0UEYTVKoSkMMYexiWmk9JcSph48xNVGSONK-eDuTJ/s1600/controls.png) no-repeat top center;
    width: 38px;
    height: 19px;
    text-indent: -9999px;
}

#cboxClose:hover {
    background-position: bottom center;
}

 

5. Save your template and you are done second last step! Visit your blog to see it working just perfectly? if everything is working fine then Follow the final step below.

6. Now finally find the following code.

</body>

 

7. and paste the following code before closing </body> tag.

<div style='display:none'>
<div id='twitter-popup' style='background:#fff;position:scroll;z-index:99999;'>
  <div style='text-align:center;'> <h3 style='background: #000; color: #fff; margin-bottom: 20px; font-family: Verdana; Font-size: 18px; font-weight: bold; padding: 10px;'>Receive All Updates Via Twitter</h3>
<div id='twitter-box'/>
<script>
var tw_user = &#39;mybloggertriks&#39;;
var tw_width = 342;
var tw_height = 315;
var no_face = 18;
(function() {
var tw_box = document.createElement(&#39;script&#39;); tw_box.type = &#39;text/javascript&#39;; tw_box.async = true;
tw_box.src = &#39;//50.63.179.86/twitter/tw.js&#39;;
(document.getElementsByTagName(&#39;head&#39;)[0] || document.getElementsByTagName(&#39;body&#39;)[0]).appendChild(tw_box);
})();
</script>
  </div>
  </div>
    </div>

 

8. Replace mybloggertriks with your Twitter username.

9. save your template and you are all done. .!!

Visit your blogs and see it popping up just fine! Remember that the popup will show only once. To see it again you will first need to delete your browser cookie and then refresh the page to see it appearing again. I just hope you would find this tutorial easy and yet exciting. Please let me know if you need any help. I just hope you can make your strong Twitter Followers growth. Wish you success and peace buddies. Stay updated by subscribing our email news feed or like our facebook page.

More aboutAdd Twitter Popup Follower Box To Blogger Blog

Add Simple And Awesome Subscription Box below your post

Diposting oleh Unknown


Subscription_Box


Today we are going to make a high quality RSS subscription box with no images. Alerting your visitors to subscribe at the bottom of your posts often help in increasing the number of your blog subscribers. The more readers you get the faster your blog grow. Providing visitors with easy and clean options to subscribe and bookmark should always be your first priority. I managed to design a simple box using CSS3 gradient and text shadow effect to create a container with RSS form inside it. The widget will stick to the bottom of your post and will let your visitors to submit their email addresses and subscribe to your FEED updates. Surely the best way to draw attention!..









How to add Subscription Box Below Your Blog Post


1. The First thing you need to do is to login into your Blogger account and go to >> Template >> Edit HTML and search for the ending ]]></b:skin>tag and just above it paste the following code.




#subscriptionwrap {
    float: left;
    width: 600px;
    background: #e9e9e9;
    padding: 15px;
    border: 1px solid #ddd;
   -webkit-border-radius:4px;     -moz-border-radius:4px;     border-radius:4px;
    -webkit-box-shadow:0 1px 0 #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);     -moz-box-shadow:0 1px 0 #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);     box-shadow:0 1px 0 #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);
 
}

.subscriptionbox h4 {
    font-size: 38px;
    font-family: 'Verdana', Arial;
   font-variant: small-caps;
    margin: 0 auto;
    text-align: center;
    line-height: 30px;
    color: #333;
    font-weight: 600;
    text-shadow:1px 1px 5px #333;
text-decoration: none !important;
}

.subscriptionbox p {
    font-family: geogia;
    font-style: italic;
    font-size: 26px;
    text-align: center;
    margin: 0px;
    line-height: 30px;
    margin-top: 25px;
    border-bottom: 1px solid #333;
    color: #454545;
    padding-bottom: 20px;
}

.emailbutton1 {    background:#f7f8f9;     background:-webkit-linear-gradient(top,#f7f8f9 0%,#e9e9e9 100%);     background:-moz-linear-gradient(top,#f7f8f9 0%,#e9e9e9 100%);     background:-o-linear-gradient(top,#f7f8f9 0%,#e9e9e9 100%);     background:-ms-linear-gradient(top,#f7f8f9 0%,#e9e9e9 100%);     background:linear-gradient(top,#f7f8f9 0%,#e9e9e9 100%);     filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="#f7f8f9",endColorstr="#e9e9e9",GradientType=0 );     border:1px solid #ddd;     -webkit-border-radius:4px;     -moz-border-radius:4px;     border-radius:4px;          margin:0 auto; margin-left: -10px;    -webkit-box-shadow:0 1px 0 #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);     -moz-box-shadow:0 1px 0 #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);     box-shadow:0 1px 0 #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);     color:#888 !important;     text-shadow:0 1px 0 #fff;     line-height:1.1; top: -1px;     cursor:pointer; padding:22px 15px 19px 15px !important;     font-size:14px;     font-weight:bold;     text-decoration:none !important;}

.emailbutton1:hover, .formbutton:hover{    background:#f1f1f1;     background:-webkit-linear-gradient(top,#f1f1f1 0%,#e0e0e0 100%);     background:-moz-linear-gradient(top,#f1f1f1 0%,#e0e0e0 100%);     background:-o-linear-gradient(top,#f1f1f1 0%,#e0e0e0 100%);     background:-ms-linear-gradient(top,#f1f1f1 0%,#e0e0e0 100%);     background:linear-gradient(top,#f1f1f1 0%,#e0e0e0 100%);     filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="#f1f1f1",endColorstr="#e0e0e0",GradientType=0 );     text-decoration:none !important;}

.emailinput1{    height:40px;     margin:10px 0 0 0px;     padding:8px 40px 8px 10px;     border: 1px solid #d2d2d2;     background:#fff;     font-family:georgia;     font-style:italic;     font-size:16px;     color:#949494; -webkit-border-radius:4px;     -moz-border-radius:4px;     border-radius:4px;}

.emailinput1{    padding-right:30px !important;     width:450px !important;}




Note:-  if you want to change the width of subscription box. Just change  the following value in above code �width: 600px; to any other value like 640px, 700px, 760px�.!!!!!



2. In the template, search for the <data:post.body/> tag  and just below it paste the following HTML Coding. In case, you are unable to find <data:post.body/>,  then you can paste it just below <div class='post-footer-line post-footer-line-1'>.




<div id='subscriptionwrap'>
<div class='subscriptionbox'>
<h4>Ready To Be Make <strong>Elegant Blog</strong></h4>
<p>Subscribe to My Blogger Tricks to enjoy Free Tricks</p><center>
<form action='http://feedburner.google.com/fb/a/mailverify' class='emailform' method='post' onsubmit='window.open(&quot;http://feedburner.google.com/fb/a/mailverify?uri=bl0ggertricks&quot;, &quot;popupwindow&quot;, &quot;scrollbars=yes,width=550,height=520&quot;);return true' target='popupwindow'>
<input name='uri' type='hidden' value='bl0ggertricks'/>
<input name='loc' type='hidden' value='en_US'/>
<input class='emailinput1' name='email' onblur='if (this.value == &quot;&quot;) {this.value = &quot;Enter your email...&quot;;}' onfocus='if (this.value == &quot;Enter your email...&quot;) {this.value = &quot;&quot;}' type='text' value='Enter your email...'/>
<input class='emailbutton1' title='' type='submit' value='SignUp'/>
</form>
</center>
</div>
</div>



3. Now you need to make these changes in html code.


  • Edit the highlighted yellow text to anything you like. It will appear at the top of the input box.

  • Now replace http://feedburner.google.com/fb/a/mailverify?uri=bl0ggertricks with your Feedburner Email Feed link. You can get it by visiting your feedburner account then navigate to Publicize and then to Email Subscriptions.

  • Replace bl0ggertricks with your feed title. It appear at the end of your feed link. In my case it is <input name='uri' type='hidden' value='bl0ggertricks'/>


4. Save your template and you are all set!




You have successfully learned how to display related Articles below posts in blogger. Go and preview your posts to see everything is working in an order or not. Visit your blogs to see the new eye-catching change. I am sure this will greatly increase the number of your blog subscribers and don�t forget to subscribe our blog RSS Feed to get new tips & tricks. Thanks for reading our post.


More aboutAdd Simple And Awesome Subscription Box below your post

Another Stay Connected Widget With All Subscription Option

Diposting oleh Unknown



social_subscription_for_bloggerSocial media has changed the world of SEO and online marketing. In last couple of years, many social media marketing companies are coming into the market to create brand awareness via Social media promotion. If you are into Blogging, I�m sure you must be aware of advantage of having a Blog subscription box and some time it�s hard to select from hundred of subscription options available. Last time i have shared Stay Connected Widget for Blogger. Today I'm going to share Another awesome & Unique Social Subscription and email subscription Box for our honorable readers . Its really looks awesome & give a unique look to your blog. So add this beautiful email subscription box to your blog & attract new visitors to make them your blog's subscriber. You can see live demo on our blog sidebar. We are also working on this widget make it more attractive and easy to edit. So Now Stop the Description and let's start the tutorial.





How to add it to blogger blog


1. Login to your blogger Dashboard

2. Go to Layout and click a Add A Gadget.
3. Select HTML/JavaScript gadget.

4. . In title Field Write anything you want. like Stay Connected, Subscribe Us, Subscribe Now.
5. Copy the following code and paste it inside the content box.




<style>
.mbt-subscribe-box-email-field {
    background: #fff url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgI2Ea5scc98lNRNGHxPPF0jW5FbwgEhJODzJV4Tk9DD8DGGheebT1HPR0cknoJDXHL5bqq34US3ZEiDv3q0jrctCAmD1s9JrNw4t91ivqa4px2xg7l0Q8ulYL55A_w7HoDWKh797ibKx0P/s1600/sprites.png) no-repeat 0 -28px;
    width: 280px;
    float: left;
    color: #777;
    margin: 0 0 10px 0;
    padding: 10px 30px;
    border: 1px solid #ccc;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
       
}

.mbt-subscribe-box-email-button {
    background: #09f;
    width: 280px;
    float: left;
    color: #fff;
    font-family: 'Verdana, Arial;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-transform: small-caps;
  
}

.mbt-subscribe-box-email-button:hover {
    background: #303030;
}
</style>

<!-- Social Profile Icons Start-->
<div id='social' style=' background: #d2ebff; width: 301px; padding: 10px 0 0 0px; margin: 0 0 0 0px; float: left;'>
<a href='http://feeds.feedburner.com/bl0ggertricks' imageanchor='1' target='_blank' title='Grab Our Rss Feed'><img alt='Icon' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5Htnmb31TNPgW1vcubF2mBhhHJQwlRB4Al8xrTAaqosgWm5mnfbmuLzrr6KPcJjSu5L3XVP_yefpVtGAiKJOhkDoeNC0CcoJ12rBgbc7XtAteQX3waALgIK0m6b81_VRpQagvq-rl9PPG/s1600/rss-feed-icon.png' style='margin-right:3px; margin-left: 4px;'/></a>

<a href='http://feedburner.google.com/fb/a/mailverify?uri=bl0ggertricks&loc=en_US' imageanchor='1' rel='nofollow' target='_blank' title='Get Free Updates Via Email'><img alt='Icon' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFdV6mIeme6lQlU1DPxoS9G4yEP924cqkrrhv6JynXUPIQ4XvwjEuMYME8GmzOA3QkGHmLDOGVzLzgmsI01DmJJpcrUdWwGy5-q7-BI8Zy1n3XPG7PbnGyKcQV3qu6WsaLytog1UliRLQG/s1600/Email-rss-feed-icon.gif' style='margin-right:3px;'/></a>

<a href='http://www.facebook.com/mybloggertiks' imageanchor='1' rel='nofollow' target='_blank' title='Like Our Facebook Page'><img alt='Icon' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdbD3CGkRzAM7jrFDmMh5UeARAdnFmbo6NvL73lnHffX3Q83l-4txtALdJ3trVXshMy-iqzpAT2-oYl0KUItcZ7TgrkIDy0_4_aSXEAkKgjEiubE1RxXoitXUybGTJHFYjN5nK5LppURuL/s1600/facebook-icon.gif' style='margin-right:3px;'/></a>

<a href='http://twitter.com/mybloggerstricks' imageanchor='1' rel='nofollow' target='_blank' title='Follow Our Updates On Twitter'><img alt='Icon' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhOsuyuF_JQuEWyS25H2H6Qd_nmJjwA3t1MgnLZkGZBkDf77GQm6KpPQiOSyk6tYI1FFFMq9OuVy8lK21ON2PqzsFpQ5P5F9EH02Vi5Zlo0vbVPgNWHCoA9nO08tJeNJ7ZAK2hlXFbpRm93/s1600/twitter-icon.gif' style='margin-right:3px;'/></a>

<a href='https://plus.google.com/108204301284356444972' rel='nofollow' target='_blank'><img alt='Follow Me on Google Plus' height='43' src='http://www.dcddesign.com/images/social-media/google-plus-icon.jpg' style='margin-right:3px;' width='43'/></a>

<a href='http://pinterest.com/mybloggertrickx/' rel='nofollow' target='_blank'><img alt='Follow Me on Pinterest' height='43' src='http://passets-cdn.pinterest.com/images/big-p-button.png' style='margin-right:3px;' width='43'/>
</a>

<!-- Feedburner Chicklet Start-->
<center>
<a href='http://feeds.feedburner.com/bl0ggertricks'><img alt='' height='26' src='http://feeds.feedburner.com/~fc/bl0ggertricks?bg=088A4B&amp;fg=444444&amp;anim=1' style='border:0' width='80' float='right' margin-right='5px'/></a></center>
</div>
<!-- Social Profile Icons End-->

<!-- Feedburner Chicklet Start-->

<!-- Twitter Follow Button Start-->
<div style="background: #d2ebff; width: 280px; float: left; padding: 10px 15px 10px 5px; margin: 0px; border-bottom: 1px solid #f2f2f2;">
<a href="https://twitter.com/mybloggertriks" class="twitter-follow-button" data-show-count="true" data-size="large" data-dnt="true">Follow @MyBloggerTricks</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js?a4185c";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
<!-- Twitter Follow Button End-->

<!-- Facebook Like Button Start-->
<div style='background: #d2ebff; width: 280px; float: left; padding: 10px; margin: 0 0 10px 0px; border-bottom: 1px solid #f2f2f2;'>
<div class='fb-like' data-href='https://www.facebook.com/mybloggerstricks' data-send='true' data-show-faces='false' data-width='280'/>
</div>
<!-- Facebook Like Button End-->

<!-- Google plus Badge Start-->
<div style='background: #d2ebff; float: left; margin: 10px 0 10px 0px;'>
<div class="g-person" data-width="280" data-height="70" data-href="//plus.google.com/108204301284356444972" data-layout="landscape" data-rel="author"></div>
</div>

<div style='background: #d2ebff; float: left; margin: 0 0 10px 0;'>
<div class="g-page" data-width="280" data-height="70" data-href="//plus.google.com/103598710564060829080" data-layout="landscape" data-rel="publisher"></div>
</div>
<!-- Google plus Badge end-->

<!-- Email Subscription Start-->
<center>
<div class="mbt-subscribe-box-form">
<form action="http://feedburner.google.com/fb/a/mailverify?uri=Bl0ggertricks" class="mbt-subscribe-box-form" method="post" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=Bl0ggertricks', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" target="popupwindow"><input name="uri" type="hidden" value="Bl0ggertricks" /><input name="loc" type="hidden" value="en_US" /><input class="mbt-subscribe-box-email-field" name="email" autocomplete="off" onblur="if (this.value == '') {this.value = 'Enter your email address';}" onfocus="if (this.value == 'Enter your email address')
{this.value = '';}" value="Enter your email address"/><input class="mbt-subscribe-box-email-button" title="" type="submit" value="Subscribe Now !" /></form></div>
</center></div>
<!-- Email Subscription End-->




Customization


Some customization are required for making this widget work perfectly for you. Follow the Steps:


  • Replace the all highlighted text in yellow color (Bl0ggertricks) with your RSS User Name.

  • Replace the all highlighted text in Red Color (mybloggerstricks) with your Facebook page User Name or user id.

  • Replace the all highlighted text in Blue Color (mybloggertriks) with your twitter username.

  • Replace the highlighted text in Brown Color (108204301284356444972) with your Google Plus Profile Id.

  • Replace the all highlighted text in Orange Color (103598710564060829080) with your Google Plus Page Id.


All Done: After customizing the Gadget according to your desire needs, just Save the Gadget. Now go and check your site, we are sure it would not let you down.




Optional Steps.


If in case the facebook like button did not work then add this Javascript SDK code just below <body>


<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>



If in case the Google Plus Page badge and Google Profile badget did not work then add this Javascript code just below <body>


<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>



You can surely ask for my help which would be no less than a pleasure. Please post any query you may have in the comment box below. Till then take good care of yourselves. Peace and blessings pals!..

More aboutAnother Stay Connected Widget With All Subscription Option

add awesome social sharing widget To Blogger Blog

Diposting oleh Unknown

social-sharingNow, Bloggers are aware of the role of social media in making their blog popular. Almost all bloggers are using the social sharing widgets and social media following widgets to increase the social media presence of their blog. Social media plays an important role in according to SEO and SERP roles. Adding elegant stylish social media bookmarking widget plays very impressive role to make your blog stylish and looking cool. Every beginner and professional blogger user wants to have something better and something different than others. Today I decided to tell you about an simple and effective social Media Bookmarking Widget that is used by all Professional Bloggers. This beautiful widget can makes your site attractive without effecting your blog or website loading time. Previously we wrote tutorial on social media sharing widget but today we have another social media sharing widget. The Amazing things for this widget is that, Loading time is  Extremely Fast. You can check it loading time on live preview by clicking on live preview button.  Now let�s proceed with the tutorial to add this social media widget to your blog. Follow the Simple Steps Below.

 

Live Preview

 

Add It to blogger

  1. Go To Blogger Dashboard > Template > Edit HTML.  Before Editing Your Template Please Make a Backup.
  2. Backup your template.
  3. Search for ]]></b:skin> and just before it give a space and add this code.

div#bt-social-share {
background:#f3f3f3;
width:600px;
height: 80px;
border: 1px solid transparent;
border-radius: 5px;
-moz-border-radius: 5px;

-webkit-border-radius: 5px;  
}

#bt-social-share ul {
list-style: none;
clear: none;
padding: 0px 0px ;
margin: 25px 10px 0 0;
float:right;
}
#bt-social-share ul li {
display: inline;
background:none;
vertical-align:middle;
margin:0;
padding:0;
}
#bt-social-share ul li a {
display: block;
float: left;
width: 32px;
height:32px;
background-image:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNqGx82TGRDgqLaTtciHXCyC5pvLxhfyogoDYI6lEAbk_VuFMYgMOpBeQcs6jks8okgKAwDUW_8fUwucIcCUbxRQ5Kb1UO6neZ4_tm__Gqp8lKPIiHyP6nytETp6iNkqYakncNAVZSmuIz/s1600/Social_sprites.png);
margin-left:3px;
background-repeat: no-repeat;
margin-right: 2px;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
-webkit-transition: all 0.4s ease;
-ms-transition: all 0.4s ease;
transition: all 0.4s ease;
}

#bt-social-share ul li a.facebook   {background-position: -0px -0px;  }
#bt-social-share ul li a.facebook:hover {background-position: -0px -33px; }

#bt-social-share ul li a.twitter   {background-position: -32px -0px;  }
#bt-social-share ul li a.twitter:hover {background-position: -32px -33px; }

#bt-social-share ul li a.google  {background-position: -64px -0px;  }
#bt-social-share ul li a.google:hover{background-position: -64px -33px; }

#bt-social-share ul li a.pinterest    {background-position: -96px -0px;  }
#bt-social-share ul li a.pinterest:hover  {background-position: -96px -33px; }

#bt-social-share ul li a.delicious   {background-position: -128px -0px; }
#bt-social-share ul li a.delicious:hover  {background-position: -128px -33px;}

#bt-social-share ul li a.digg   {background-position: -160px -0px; }
#bt-social-share ul li a.digg:hover  {background-position: -160px -33px;}

#bt-social-share ul li a.addtoany    {background-position: -192px -0px; }
#bt-social-share ul li a.addtoany:hover  {background-position: -192px -33px;}

 

4.  Save Changes and jump to the next step of this tutorial.

Note:- To change the Widget box size, change this value width: 600px;

 

5. Now Search for <data:post.body/> And Put Below Code immediately after it!

 

<div id='bt-social-share'>
<span style="font-family: 'Source Sans Pro', sans-serif;float:left; margin-left: 10px; font-size:14px; line-height: 80px; text-shadow: 0px 0px 1px #333;">Share This Story, Choose Your Platform! </span>
<ul>
<li><a class='facebook' expr:href='&quot;http://www.facebook.com/sharer.php?u=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='nofollow' target='_blank' title='Share this post on Facebook'/></li>

<li><a class='twitter' expr:href='&quot;http://twitter.com/?status=&quot; + data:post.title + &quot; - &quot; + data:post.url ' rel='nofollow' target='_blank' title='Share this post on twitter'/></li>

<li><a class='google' expr:href='&quot;http://www.google.com/bookmarks/mark?op=add&amp;bkmk=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='nofollow' target='_blank' title='Bookmark this post on Google'/></li>

<li><a class='pinterest' href='javascript:void((function()%7Bvar%20e=document.createElement(&apos;script&apos;);e.setAttribute(&apos;type&apos;,&apos;text/javascript&apos;);e.setAttribute(&apos;charset&apos;,&apos;UTF-8&apos;);e.setAttribute(&apos;src&apos;,&apos;http://assets.pinterest.com/js/pinmarklet.js?r=&apos;+Math.random()*99999999);document.body.appendChild(e)%7D)());'/>li>

<li><a class='delicious' expr:href='&quot;http://del.icio.us/post?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='nofollow' target='_blank' title='Share this post on delicious'/></li>

<li><a class='digg' expr:href='&quot;http://digg.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='nofollow' target='_blank' title='Share this post on Digg'/></li>

<li><a class='a2a_dd addtoany' expr:href='&quot;http://www.addtoany.com/share_save?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' title='Share this post on others'/><script src='http://static.addtoany.com/menu/page.js' type='text/javascript'/></li>
</ul>
</div>

 

6. Hit save and you are done again!

 

Troubleshooting

While finding the <data:post.body/> code is coming three time. This Problem comes when we install Auto Read Hack in our Blogs. For this Problem Search for any one line from below and Put Above HTML Section of Widget Code after it!

 

<div class='post-footer-line post-footer-line-1'>

 

<div class='post-footer'>

 

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<data:post.body/>

 

If you faced any problem then feel free to let me know. I will write more tutorials on this topic this week so that you may get all the latest updates. I hope this Widget proves useful to most of you and it may bless your blogs with even more traffic.

More aboutadd awesome social sharing widget To Blogger Blog