1. Log in to your blogger account
2. Go to Design --> Edit HTML
3. Copy the code below, and paste above </body>
<script type='text/javascript'>
window.setTimeout(function() {
document.body.className = document.body.className.replace('loading', '');
}, 10);
</script>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function() {
$('#social li').each(function() {
var $li = $(this);
var title = $li.find('a').attr('title');
$li.find('a').removeAttr('title');
$('<span class="tooltip"/>').text(title).appendTo($li.find('a')).hide();
$li.find('a').mouseover(function() {
var top = $(this).position().top;
var left = $(this).position().left;
$(this).find('span').fadeIn()({
top: top,
left: left
}, 'slow');
});
$li.find('a').mouseout(function() {
$(this).find('span').fadeOut('slow');
});
});
});
//]]>
</script>
window.setTimeout(function() {
document.body.className = document.body.className.replace('loading', '');
}, 10);
</script>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function() {
$('#social li').each(function() {
var $li = $(this);
var title = $li.find('a').attr('title');
$li.find('a').removeAttr('title');
$('<span class="tooltip"/>').text(title).appendTo($li.find('a')).hide();
$li.find('a').mouseover(function() {
var top = $(this).position().top;
var left = $(this).position().left;
$(this).find('span').fadeIn()({
top: top,
left: left
}, 'slow');
});
$li.find('a').mouseout(function() {
$(this).find('span').fadeOut('slow');
});
});
});
//]]>
</script>
4. Click SAVE TEMPLATE
5. Go to Design --> Page Elements --> Add Gadget
6. Choose "HTML/Java Script"
7. Add the code below, and customize first
<style text-type="CSS">
#social {
width: 98%;
height: 45px;
margin: 0;
padding: 10px 5px 5px 30px;
list-style: none;
border-right:solid 1px #853529;
position: relative;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEha_5Oj4LZ-xV6XcPA4c4IjjQEn8IGjyMSU5-vfZ8uvjhNQO3VnOU4Z0qcAUjfOH-W_U9vaO8VEFiAoTNGqU8GbHuxv96htEI69EvaDmD1khSsqMiYb16HwgrYs4DN8AKV7ga0wj855EKU/) no-repeat left top;
}
#social p{
font-size:1.5em;
color:#FFFB98;
font-weight:bold;
float:left;
margin: 10px 10px 0 0;
text-shadow: 1px 1px 0px #000000;
filter: dropshadow(color=#000000, offx=1, offy=1);
}
.abt{
font-size:0.8em;
color:#787878;
float:right;
margin: 0 -30px 0 0;
text-shadow: 1px 1px 0px #ffffff;
filter: dropshadow(color=#ffffff, offx=1, offy=1);
}
#social li {
width: 32px;
height: 32px;
float: left;
margin-right: 3px;
}
#social li a {
float: left;
display: block;
width: 100%;
height: 100%;
text-indent: -1000em;
background-repeat: no-repeat;
text-decoration: none;
}
#social #rss {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQGq-Tw15dbg55lsHvnNh73MHuZTHhYD_T6p4Pp9T4ODkkgcvWifwuPzyciw-9ijQp3RO1F9jWW-1MClHlGPiHXC-BciC7MjhjR_Jat_JokkKKoJUxoQX68_44nsvr0V-caxnDoRs5DA4/s400/allblogtools_rss.png);
}
#social #facebook {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjhYXgsapJuMoezOwg_E5pXtRd8VbINhL8lwE4y0K-AyqXMkuPy_ldV6dDRG4kHfPLTuJ3x2KfFStOTsMEo4chdYR5OJly5d91sdbQpcahTBhb5MTZQCq3f2zToeerQsLz_5pIlAZ4Pitc/s400/allblogtools_facebook.png);
}
#social #twitter {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgG1fKFW-8MROrk3p-YRM7fhxxB0A7QLZk_WeO9swAOrvJWQcgifEVmEE_P4GmA93LFqibPPcOv95_KFRVmul1hGNOrdH4oXkaTPuo48rONoOnHunmA1EvkpwXL7UGVOGAW5Zs2W1ZJ2SQ/s400/allblogtools_twitter.png);
}
#social #mail {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEikOUCXOEOH31Tk9prHP7plGNgIat4WNfXTH3MsOe_kvgTKDWVeAwh3tWt7-bYWLWOWM-URtx8nYZ8gtq1PZfUbP3d535WnkDR9oQWa_Urgpd8jFX8lFsunbcBNMjwfrwyiyy4wdr_pmMY/s400/allblogtools_email.png);
}
span.tooltip {
background: #575757;
padding: 3px;
display: block;
width: 140px;
border: 1px solid #000000;
position: absolute;
margin-top:-40px;
color: #F0F0F0;
font-size:10px;
text-indent: 0;
font: Arial, sans-serif;
text-align: center;
-webkit-box-shadow: inset 2px 2px 2px #616161;
-moz-box-shadow: inset 2px 2px 2px #616161;
box-shadow: inset 2px 2px 2px #616161;
-moz-border-radius: 5px;
border-radius: 5px;
}
</style>
<ul id="social">
<p>Follow Us </p>
<li><a rel="nofollow" href="http://BLOG-NAME.blogspot.com/feeds/posts/default?alt=rss" id="rss" title="Follow Our Feeds">Rss</a></li>
<li><a rel="nofollow" href="MailLink#" id="mail" title="Subscribe To Our News Letter">Mail</a></li>
<li><a rel="nofollow" href="FaceBookLink#" id="facebook" title="Be Our FaceBook Fan">Facebook</a></li>
<li><a rel="nofollow" href="TwitterLink#" id="twitter" title="Follow Us On Twitter">Twitter</a></li>
</ul>
<b class="abt"><a rel="nofollow" href="http://tipsandtricksfor.blogspot.com/2011/04/how-to-add-4-in-1-follow-widget.html">Get This Widget</a></b>
#social {
width: 98%;
height: 45px;
margin: 0;
padding: 10px 5px 5px 30px;
list-style: none;
border-right:solid 1px #853529;
position: relative;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEha_5Oj4LZ-xV6XcPA4c4IjjQEn8IGjyMSU5-vfZ8uvjhNQO3VnOU4Z0qcAUjfOH-W_U9vaO8VEFiAoTNGqU8GbHuxv96htEI69EvaDmD1khSsqMiYb16HwgrYs4DN8AKV7ga0wj855EKU/) no-repeat left top;
}
#social p{
font-size:1.5em;
color:#FFFB98;
font-weight:bold;
float:left;
margin: 10px 10px 0 0;
text-shadow: 1px 1px 0px #000000;
filter: dropshadow(color=#000000, offx=1, offy=1);
}
.abt{
font-size:0.8em;
color:#787878;
float:right;
margin: 0 -30px 0 0;
text-shadow: 1px 1px 0px #ffffff;
filter: dropshadow(color=#ffffff, offx=1, offy=1);
}
#social li {
width: 32px;
height: 32px;
float: left;
margin-right: 3px;
}
#social li a {
float: left;
display: block;
width: 100%;
height: 100%;
text-indent: -1000em;
background-repeat: no-repeat;
text-decoration: none;
}
#social #rss {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQGq-Tw15dbg55lsHvnNh73MHuZTHhYD_T6p4Pp9T4ODkkgcvWifwuPzyciw-9ijQp3RO1F9jWW-1MClHlGPiHXC-BciC7MjhjR_Jat_JokkKKoJUxoQX68_44nsvr0V-caxnDoRs5DA4/s400/allblogtools_rss.png);
}
#social #facebook {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjhYXgsapJuMoezOwg_E5pXtRd8VbINhL8lwE4y0K-AyqXMkuPy_ldV6dDRG4kHfPLTuJ3x2KfFStOTsMEo4chdYR5OJly5d91sdbQpcahTBhb5MTZQCq3f2zToeerQsLz_5pIlAZ4Pitc/s400/allblogtools_facebook.png);
}
#social #twitter {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgG1fKFW-8MROrk3p-YRM7fhxxB0A7QLZk_WeO9swAOrvJWQcgifEVmEE_P4GmA93LFqibPPcOv95_KFRVmul1hGNOrdH4oXkaTPuo48rONoOnHunmA1EvkpwXL7UGVOGAW5Zs2W1ZJ2SQ/s400/allblogtools_twitter.png);
}
#social #mail {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEikOUCXOEOH31Tk9prHP7plGNgIat4WNfXTH3MsOe_kvgTKDWVeAwh3tWt7-bYWLWOWM-URtx8nYZ8gtq1PZfUbP3d535WnkDR9oQWa_Urgpd8jFX8lFsunbcBNMjwfrwyiyy4wdr_pmMY/s400/allblogtools_email.png);
}
span.tooltip {
background: #575757;
padding: 3px;
display: block;
width: 140px;
border: 1px solid #000000;
position: absolute;
margin-top:-40px;
color: #F0F0F0;
font-size:10px;
text-indent: 0;
font: Arial, sans-serif;
text-align: center;
-webkit-box-shadow: inset 2px 2px 2px #616161;
-moz-box-shadow: inset 2px 2px 2px #616161;
box-shadow: inset 2px 2px 2px #616161;
-moz-border-radius: 5px;
border-radius: 5px;
}
</style>
<ul id="social">
<p>Follow Us </p>
<li><a rel="nofollow" href="http://BLOG-NAME.blogspot.com/feeds/posts/default?alt=rss" id="rss" title="Follow Our Feeds">Rss</a></li>
<li><a rel="nofollow" href="MailLink#" id="mail" title="Subscribe To Our News Letter">Mail</a></li>
<li><a rel="nofollow" href="FaceBookLink#" id="facebook" title="Be Our FaceBook Fan">Facebook</a></li>
<li><a rel="nofollow" href="TwitterLink#" id="twitter" title="Follow Us On Twitter">Twitter</a></li>
</ul>
<b class="abt"><a rel="nofollow" href="http://tipsandtricksfor.blogspot.com/2011/04/how-to-add-4-in-1-follow-widget.html">Get This Widget</a></b>
8. Now click SAVE


No comments:
Post a Comment
Your feedback is always appreciated. We will try to reply to your queries as soon as time allows.
Note:
1. Make sure to click the "Subscribe By Email" link below the comment to be notified of follow up comments and replies.
2. Please "Do Not Spam" - Spam comments will be deleted immediately upon our review.
3. Please "Do Not Add Links" to the body of your comment as they will not be published.
4. Only "English" comments shall be approved.
5. If you have a problem check first the comments, maybe you will find the solution there.