1. Log in to your blogger account
2. Go to Design --> Page Elements --> Add Gadget
3. Choose "HTML/Java Script"
<style>
ul#navigation {
position: fixed;
margin: 0px;
padding: 0px;
top: 0px;
right: 0px;
list-style: none;
z-index:999999;
width:721px;
}
ul#navigation li {
width: 103px;
display:inline;
float:left;
border:0;
}
ul#navigation li a {
display: block;
float:left;
margin-top: -2px;
width: 100px;
height: 25px;
background-color:#eeeeee;
background-repeat:no-repeat;
background-position:50% 10px;
border:1px solid #BDDCEF;
-moz-border-radius:0px 0px 10px 10px;
-webkit-border-bottom-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-khtml-border-bottom-right-radius: 10px;
-khtml-border-bottom-left-radius: 10px;
text-decoration:none;
text-align:center;
padding-top:80px;
opacity: 0.96;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
}
ul#navigation li a:hover{
background-color:#CAE3F2;
}
ul#navigation li a span{
letter-spacing:2px;
font-size:11px;
color:#60ACD8;
font-family:trebuchet-ms, arial, tahoma, Sans-Serif;
font-weight:bold;
text-shadow: 0 -1px 1px #fff;
}
ul#navigation .rss a{
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhanXWoO4BSNSL_FgLT61nsYgjBD_cLnu1Or6OmYLDDq-wiUAVS2XeTFwzIVsKeJanmRdmVvwqRrLqffc0C2lsxcCqViP5HYbx7k6TDKFQdMmytrptUSRPbYSFqaaSdA1t01B034DNg95P1/s400/rss_64x64.png);
}
ul#navigation .facebook a {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjToh3DtkkDxqMy3hqnIdDkMbg_pA9WlThi9yx1PqBvCf1ilpaPLT_oLQtPaxVFRacO5dY2YPh5rQApi9oUp5fJjUh2djx1BBnc_M_5rv525Zpn60V1DNKvr8i-7yMC6bzsk3qyX3x_2gg4/s400/facebook_64x64.png);
}
ul#navigation .twitter a {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj42B66t71MHwdBit4dI9EhtyoY-53dfo1S_KTwWEyl2RHgPg6BQbxtJ8cVXeu3iAaxd8G4186voi9DsG4NrZqgGp_1y0dWo7k2mT17bIoi5SJd83Pi87wB4wBvRDPdgSIl7MfSFGIcqswt/s400/twitter_64x64.png);
}
ul#navigation .googlebookmarks a {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgu1tLZNx5b9TNiqbkrl3z5M5ikg2tQIe0Iw6mfNd-nyyeZMhNzQWhYjH-6FLyiimjnS38osFo_tNygTjObcSyiVfs7B0pz-1kGe-sLIUXWF-lu0z9q6Xx4X5qiHl3UbhXAalRFEVUwxxmX/s400/google_64x64.png);
}
ul#navigation .e-mail a {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgrMgyxHDyvk2QkrAv1E7UDm5U83cCyVqT9o5O-lr3zY3-hjoHraav9nXfFeHiFyQAC301Zp5eEAWWSJy0bRoPu2zKDwuDSCRxgMbZzkneCbJSDk9gV_KE4qbo7Iz_lYnRlB4dSbDr8PnSm/s400/yahoo_64x64.png);
}
</style>
<script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js" type="text/javascript">
</script>
<script type="text/javascript">
$(function() {
var d=300;
$('#navigation a').each(function(){
$(this).stop().animate({
'marginTop':'-80px'
},d+=150);
});
$('#navigation > li').hover(
function () {
$('a',$(this)).stop().animate({
'marginTop':'-2px'
},200);
},
function () {
$('a',$(this)).stop().animate({
'marginTop':'-80px'
},200);
}
);
});
</script>
<ul id="navigation">
<li class="rss"><a rel="nofollow" href="http://YOUR-BLOG.blogspot.com/atom.xml">RSS Feed</a></li>
<li class="facebook"><a rel="nofollow" href="FACEBOK-PROFILE">Facebook</a></li>
<li class="twitter"><a rel="nofollow" href="TWITTER-ACCOUNT">Twitter</a></li>
<li class="googlebookmarks"><a rel="nofollow" href="https://www.google.com/bookmarks/">Google</a></li>
<li class="e-mail"><a rel="nofollow" href="YAHOO!-ACCOUNT">Yahoo!</a></li>
</ul>
ul#navigation {
position: fixed;
margin: 0px;
padding: 0px;
top: 0px;
right: 0px;
list-style: none;
z-index:999999;
width:721px;
}
ul#navigation li {
width: 103px;
display:inline;
float:left;
border:0;
}
ul#navigation li a {
display: block;
float:left;
margin-top: -2px;
width: 100px;
height: 25px;
background-color:#eeeeee;
background-repeat:no-repeat;
background-position:50% 10px;
border:1px solid #BDDCEF;
-moz-border-radius:0px 0px 10px 10px;
-webkit-border-bottom-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-khtml-border-bottom-right-radius: 10px;
-khtml-border-bottom-left-radius: 10px;
text-decoration:none;
text-align:center;
padding-top:80px;
opacity: 0.96;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
}
ul#navigation li a:hover{
background-color:#CAE3F2;
}
ul#navigation li a span{
letter-spacing:2px;
font-size:11px;
color:#60ACD8;
font-family:trebuchet-ms, arial, tahoma, Sans-Serif;
font-weight:bold;
text-shadow: 0 -1px 1px #fff;
}
ul#navigation .rss a{
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhanXWoO4BSNSL_FgLT61nsYgjBD_cLnu1Or6OmYLDDq-wiUAVS2XeTFwzIVsKeJanmRdmVvwqRrLqffc0C2lsxcCqViP5HYbx7k6TDKFQdMmytrptUSRPbYSFqaaSdA1t01B034DNg95P1/s400/rss_64x64.png);
}
ul#navigation .facebook a {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjToh3DtkkDxqMy3hqnIdDkMbg_pA9WlThi9yx1PqBvCf1ilpaPLT_oLQtPaxVFRacO5dY2YPh5rQApi9oUp5fJjUh2djx1BBnc_M_5rv525Zpn60V1DNKvr8i-7yMC6bzsk3qyX3x_2gg4/s400/facebook_64x64.png);
}
ul#navigation .twitter a {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj42B66t71MHwdBit4dI9EhtyoY-53dfo1S_KTwWEyl2RHgPg6BQbxtJ8cVXeu3iAaxd8G4186voi9DsG4NrZqgGp_1y0dWo7k2mT17bIoi5SJd83Pi87wB4wBvRDPdgSIl7MfSFGIcqswt/s400/twitter_64x64.png);
}
ul#navigation .googlebookmarks a {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgu1tLZNx5b9TNiqbkrl3z5M5ikg2tQIe0Iw6mfNd-nyyeZMhNzQWhYjH-6FLyiimjnS38osFo_tNygTjObcSyiVfs7B0pz-1kGe-sLIUXWF-lu0z9q6Xx4X5qiHl3UbhXAalRFEVUwxxmX/s400/google_64x64.png);
}
ul#navigation .e-mail a {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgrMgyxHDyvk2QkrAv1E7UDm5U83cCyVqT9o5O-lr3zY3-hjoHraav9nXfFeHiFyQAC301Zp5eEAWWSJy0bRoPu2zKDwuDSCRxgMbZzkneCbJSDk9gV_KE4qbo7Iz_lYnRlB4dSbDr8PnSm/s400/yahoo_64x64.png);
}
</style>
<script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js" type="text/javascript">
</script>
<script type="text/javascript">
$(function() {
var d=300;
$('#navigation a').each(function(){
$(this).stop().animate({
'marginTop':'-80px'
},d+=150);
});
$('#navigation > li').hover(
function () {
$('a',$(this)).stop().animate({
'marginTop':'-2px'
},200);
},
function () {
$('a',$(this)).stop().animate({
'marginTop':'-80px'
},200);
}
);
});
</script>
<ul id="navigation">
<li class="rss"><a rel="nofollow" href="http://YOUR-BLOG.blogspot.com/atom.xml">RSS Feed</a></li>
<li class="facebook"><a rel="nofollow" href="FACEBOK-PROFILE">Facebook</a></li>
<li class="twitter"><a rel="nofollow" href="TWITTER-ACCOUNT">Twitter</a></li>
<li class="googlebookmarks"><a rel="nofollow" href="https://www.google.com/bookmarks/">Google</a></li>
<li class="e-mail"><a rel="nofollow" href="YAHOO!-ACCOUNT">Yahoo!</a></li>
</ul>
4. Then, add the code below
5. Click SAVE TEMPLATE


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.