Showing posts with label WIDGETS. Show all posts
Showing posts with label WIDGETS. Show all posts

Floating Twitter Buttons With auto Sliding


Add Floating Twitter Button To Blogger

  1. Go To Blogger > Design
  2. Choose a HTML/JavaScript widget
  3. Paste the following code inside it,
<style>
/*-------MBT Floating Counters------------*/
#floatdiv {
    position:absolute;
    width:94px;
    height:100px;
    top:0;
    left:0;
        z-index:100
}

#mbtsidebar {
        border:0px solid #ddd;
        padding-left:0px;
    position:relative;
    margin:0 0 0 5px;
}
</style>


<div id="floatdiv">
<div id="mbtsidebar">
    <table cellpadding="1px" cellspacing="0">
    <tr>
    <td style="border-bottom: 0px solid #E8E8E8; padding:5px 0 0px 0;">
<a rel="nofollow" href="http://twitter.com/share" class="twitter-share-button" expr:data-url='data:post.url' expr:data-text='data:post.title' data-count="vertical" data-via="nsciom">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script> 
    </td> 
    </tr>
    <tr>
    <td style="border-bottom: 0px solid #E8E8E8; padding:0px 0 0px 0;">
<p style=" font-size:10px; text-align:center; color:#ddd;"><a style="color:#ddd;" href="http://www.MyBloggerTricks.com" target="_blank">Widgets</a></p>
    </td>
    </tr>
    </table>
</div>
</div>
<script type="text/javascript">
// JavaScript Document

   <!--
/* Script by: www.jtricks.com
* Version: 20071017
* Latest version:
* www.jtricks.com/javascript/navigation/floating.html
*/
var floatingMenuId = 'floatdiv';
var floatingMenu =
{
    targetX: 0,
    targetY: 100,
    hasInner: typeof(window.innerWidth) == 'number',
    hasElement: typeof(document.documentElement) == 'object'
        && typeof(document.documentElement.clientWidth) == 'number',
    menu:
        document.getElementById
        ? document.getElementById(floatingMenuId)
        : document.all
          ? document.all[floatingMenuId]
          : document.layers[floatingMenuId]
};
floatingMenu.move = function ()
{
    floatingMenu.menu.style.left = floatingMenu.nextX + 'px';
    floatingMenu.menu.style.top = floatingMenu.nextY + 'px';
}
floatingMenu.computeShifts = function ()
{
    var de = document.documentElement;
    floatingMenu.shiftX =
        floatingMenu.hasInner
        ? pageXOffset
        : floatingMenu.hasElement
          ? de.scrollLeft
          : document.body.scrollLeft;
    if (floatingMenu.targetX < 0)
    {
        floatingMenu.shiftX +=
            floatingMenu.hasElement
            ? de.clientWidth
            : document.body.clientWidth;
    }
    floatingMenu.shiftY =
        floatingMenu.hasInner
        ? pageYOffset
        : floatingMenu.hasElement
          ? de.scrollTop
          : document.body.scrollTop;
    if (floatingMenu.targetY < 0)
    {
        if (floatingMenu.hasElement && floatingMenu.hasInner)
        {
            // Handle Opera 8 problems
            floatingMenu.shiftY +=
                de.clientHeight > window.innerHeight
                ? window.innerHeight
                : de.clientHeight
        }
        else
        {
            floatingMenu.shiftY +=
                floatingMenu.hasElement
                ? de.clientHeight
                : document.body.clientHeight;
        }
    }
}
floatingMenu.calculateCornerX = function()
{
    if (floatingMenu.targetX != 'center')
        return floatingMenu.shiftX + floatingMenu.targetX;
    var width = parseInt(floatingMenu.menu.offsetWidth);
    var cornerX =
        floatingMenu.hasElement
        ? (floatingMenu.hasInner
           ? pageXOffset
           : document.documentElement.scrollLeft) +
          (document.documentElement.clientWidth - width)/2
        : document.body.scrollLeft +
          (document.body.clientWidth - width)/2;
    return cornerX;
};
floatingMenu.calculateCornerY = function()
{
    if (floatingMenu.targetY != 'center')
        return floatingMenu.shiftY + floatingMenu.targetY;
    var height = parseInt(floatingMenu.menu.offsetHeight);
    // Handle Opera 8 problems
    var clientHeight =
        floatingMenu.hasElement && floatingMenu.hasInner
        && document.documentElement.clientHeight
            > window.innerHeight
        ? window.innerHeight
        : document.documentElement.clientHeight
    var cornerY =
        floatingMenu.hasElement
        ? (floatingMenu.hasInner
           ? pageYOffset
           : document.documentElement.scrollTop) +
          (clientHeight - height)/2
        : document.body.scrollTop +
          (document.body.clientHeight - height)/2;
    return cornerY;
};
floatingMenu.doFloat = function()
{
    // Check if reference to menu was lost due
    // to ajax manipuations
    if (!floatingMenu.menu)
    {
        menu = document.getElementById
            ? document.getElementById(floatingMenuId)
            : document.all
              ? document.all[floatingMenuId]
              : document.layers[floatingMenuId];
        initSecondary();
    }
    var stepX, stepY;
    floatingMenu.computeShifts();
    var cornerX = floatingMenu.calculateCornerX();
    var stepX = (cornerX - floatingMenu.nextX) * .07;
    if (Math.abs(stepX) < .5)
    {
        stepX = cornerX - floatingMenu.nextX;
    }
    var cornerY = floatingMenu.calculateCornerY();
    var stepY = (cornerY - floatingMenu.nextY) * .07;
    if (Math.abs(stepY) < .5)
    {
        stepY = cornerY - floatingMenu.nextY;
    }
    if (Math.abs(stepX) > 0 ||
        Math.abs(stepY) > 0)
    {
        floatingMenu.nextX += stepX;
        floatingMenu.nextY += stepY;
        floatingMenu.move();
    }
    setTimeout('floatingMenu.doFloat()', 20);
};
// addEvent designed by Aaron Moore
floatingMenu.addEvent = function(element, listener, handler)
{
    if(typeof element[listener] != 'function' ||
       typeof element[listener + '_num'] == 'undefined')
    {
        element[listener + '_num'] = 0;
        if (typeof element[listener] == 'function')
        {
            element[listener + 0] = element[listener];
            element[listener + '_num']++;
        }
        element[listener] = function(e)
        {
            var r = true;
            e = (e) ? e : window.event;
            for(var i = element[listener + '_num'] -1; i >= 0; i--)
            {
                if(element[listener + i](e) == false)
                    r = false;
            }
            return r;
        }
    }
    //if handler is not already stored, assign it
    for(var i = 0; i < element[listener + '_num']; i++)
        if(element[listener + i] == handler)
            return;
    element[listener + element[listener + '_num']] = handler;
    element[listener + '_num']++;
};
floatingMenu.init = function()
{
    floatingMenu.initSecondary();
    floatingMenu.doFloat();
};
// Some browsers init scrollbars only after
// full document load.
floatingMenu.initSecondary = function()
{
    floatingMenu.computeShifts();
    floatingMenu.nextX = floatingMenu.calculateCornerX();
    floatingMenu.nextY = floatingMenu.calculateCornerY();
    floatingMenu.move();
}
if (document.layers)
    floatingMenu.addEvent(window, 'onload', floatingMenu.init);
else
{
    floatingMenu.init();
    floatingMenu.addEvent(window, 'onload',
        floatingMenu.initSecondary);
}
//-->
</script> 

Simply replace nsciom with your twitter username. The above code will display a vertical count as shown below:
vertical count
If you want a horizontal count or no count at all then replace vertical with horizontal or none
horizontal count
     4.   Hit save and you are done!

Create Facebook and Twitter Custom Follower Counters


Follower-CounterI was thinking as why some services like Facebook, Digg, orkut, stumbleupon has no follower, fan or friends counter. While I was customizing my template I needed a follower counter for Facebook but unfortunately I could not find any. So I decided that why not create my own custom follower counter. This idea enabled me to create a follower counter for any service you like!
This is how our Custom follower counter for Facebook looks like,
227 Followers
or a blinking one for browsers other then IE,
227+ Fans

To add a counter you just need to do the following,
  1. Go To Blogger > Layout
  2. Choose Add a Gadget or Add a Page element
  3. Choose HTML/JavaScript
  4. Finally paste the code below inside the HTML/JavaScript widget,

<span sans ms style=" background-color:#F2F2F2; border-top: 1px solid #F2F2F2; border-right: 1px solid #8A8A8A; border-left: 1px solid #F2F2F2; border-bottom: 1px solid #8A8A8A; padding: 2px 4px 4px 4px; color: #666; font-family: sans-serif, arial; font-size: 10px;">
<span style=" background-color:#D2E9F8; font-size: 9px; border-top: 1px solid #8A8A8A; border-right: 1px solid #ddd; border-left: 1px solid #8A8A8A; border-bottom: 1px solid #ddd; padding: 0px 1px;">227<blink>+</blink></span>Followers</span>


Customization

The bolded text in the code above are described below,
background-color: This defines the background colour of the counter. To change the hexadecimal color value to something different use our colour chart.
background-color: This defines the background colour of the number count i.e 227 You can change its colour using the same color chart.
color: This defines the color of the text i.e 227 and Followers
<blink>+</blink>: The code in blue is responsible for blink the plus sign. You can write anything between <blink> and </blink> For instance symbols like k (kilo).. etc If you don’t want this blinking effect simply delete <blink>+</blink> from the main code above.
227 and Followers: Replace these with your own follower count and count name.

Some Example Counters For Feed Readers and Twitter

FEED COUNTER
227 Readers

<span sans ms style=" background-color:#CC9966; border-top: 1px solid #F2F2F2; border-right: 1px solid #666; border-left: 1px solid #F2F2F2; border-bottom: 1px solid #666; padding: 2px 4px 4px 4px; color: #000; font-family: sans-serif, arial; font-size: 10px;">
<span style=" background-color:#CCCCCC; font-size: 9px; border-top: 1px solid #666; border-right: 1px solid #fff; border-left: 1px solid #666; border-bottom: 1px solid #fff; padding: 0px 1px;">227</span> Readers</span>
TWITTER COUNTER
227Tweeters

<span sans ms style=" background-color:#F2F2F2; border-top: 1px solid #F2F2F2; border-right: 1px solid #8A8A8A; border-left: 1px solid #F2F2F2; border-bottom: 1px solid #8A8A8A; padding: 2px 4px 4px 4px; color: #33CCFF; font-family: sans-serif, arial; font-size: 10px;">
<span style=" background-color:#33CCFF; font-size: 9px; color:#fff; border-top: 1px solid #666; border-right: 1px solid #fff; border-left: 1px solid #666; border-bottom: 1px solid #fff;  padding: 0px 1px;">227</span>Tweeters</span>


The Number Count Is Manual!

Since this widget is based fully on CSS and it uses no programming code so you will need to update your follower count yourself each time you receive a new Facebook follower, Feed Reader or Twitter follower etc. I hope that is not difficult to do so :)

Customize Twitter Follow Button In 7 ways!


Create Custom Twitter Follow Button

You can make 7 changes to the button appearance. You can change:
  1. Button background color
  2. Text Color
  3. Link Color
  4. Followers Count Display
  5. Language
  6. Width
  7. Alignment
The only changes that makes sense to me are the first 4 changes. Remaining changes should be made only of you run a blog with complex design and language other than english.
The normal code looks like this:
<a href="http://twitter.com/nsciomclass="twitter-follow-button">Follow @nsciom</a> 
<script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
Where you just need to replace the green text with your twitter username. The above default code will display the following look,
Now to make customization changes add the following codes (given below) just before the highlighted yellow text to make the effects take place.
1) To Change the button color you have two choice blue or grey. The blue one is the default one and the grey color is the one that I am using.
data-button = "grey"
PS: With the grey color you will not be able to see the followers count because its color is automatically changed to white.  So read below..
2) To change the text color use this code,
data-text-color = "#000000"
To change the hexadecimal color use our color generator tool

3) Add this code to change link color,
data-link-color = "#000000"
Again replace the 6 digit hexadecimal code with a color of your choice

4) To Hide the followers count number, use this code,
data-show-count="false"
If you wish to show counts again then simply change false to true

5)  The Follow Button is available in English (en), French (fr), German (de), Italian (it), Spanish (es), Korean (ko) and Japanese (ja). To specify the language for the Follow Button use the two letter language code. For example for Twitter button in Japanese language use this code,
data-lang="ja"
Simply replace ja with any language code you want.

6) You can adjust the width of the follow button in pixels or percentage using the following code,

data-width="300px"
The default width is 300px. You can increase or decrease it. The default dimensions for the follow button are 300px by 20px

7)  You can also align the plugin to left or right just like the float property by using this code,
data-align="right"
You can float the button to either right or left.

Combined Customized code:

The following code will put the important effects in a single button,
<a href="http://twitter.com/mybloggertricks" data-lang="de" data-text-color = "#0080ff"  data-link-color = "#289728" data-button = "grey"class="twitter-follow-button">Follow @mybloggertricks</a>
<script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
You can add your required codes in the similar manner as shown in the above code.

Add Social Networking Buttons Below Blogger Posts


How To Add Social Networking Icons In Blogger?

To add these icons below posts kindly follow these steps,
  1. Go To Blogger > Design > Edit HTML
  2. Backup your template
  3. Click the "Expand Widgets Template" box
  4. Search for this,
]]></b:skin>
and just above it paste the Opacity code below,
/*------------ MBT Image Opacity--------------*/
.Fadein img {
filter:alpha(opacity=100);
-moz-opacity: 1.0;
opacity: 1.0;
border:0;
}
.Fadein:hover img {
filter:alpha(opacity=30);
-moz-opacity: 0.30;
opacity: 0.30;
border:0;
}

     5.    Next search for this code,
<data:post.body/>
and just below it paste the following code,

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<center><span style='color: #7AA1C3; font-size: 12px; font-family: Verdana;'><b>Thanks For Making This Possible! Kindly Bookmark and Share it.</b></span><br/><br/> 
<a class='Fadein' expr:href='&quot;http://technorati.com/faves?add=&quot; + data:post.url' rel='external nofollow' target='_blank'><img alt='Technorati' height='64px' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5RfNHeHfnqScvViBLZwvI6LpeB70ZStsng2fSq7yIYHOKay5qAT5JnasjUijrT5tY_D50eZnsVT8CMTlqwPDncQ6CjYHBM0EtNxW5USvxxqZKkEIKR85cve-6PTNXDC0VjxcrC5F8-XQ/s400/TECHNORATI1.png ' width='64px'/></a> 
<!--DIGG--> 
<a class='Fadein' expr:href='&quot;http://digg.com/submit?phase=2&amp;url=&quot;  + data:post.url' rel='external nofollow' target='_blank'><img alt='Digg This' height='80px' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2XzGa2A4DIyeIbnP8_TDxnHmtgPoC5KHKNOCwgbe7XRbXbivHLmU9ZwX5deG6MHjpw_I6xhf_zf3UaP_HnWzuHW-BRpP_OaD_TSMHD3ik588yffwr0MbWRp49D0OR9lApE99cOoagyUI/s400/DIGG1.png ' width='80px'/></a> 
<!--Stumble--> 
<a class='Fadein' expr:href='&quot;http://www.stumbleupon.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='external nofollow' target='_blank'><img alt='Stumble' height='100px' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhraltO_nMenXBvKqXm8DefL1wi2s780cQ8VVHkwdc6TslBXPr8SS1HN87ERsLnHUsaJTS9icAY3GpBa6usKx0VOyqJ9gz34lOWDTkZi4CZY3YkyrFJYW3wcjHzYDO-aZ_1n_gfB4bTQ04/s400/stumble1.png' width='100px'/></a> 
<!--Reddit--> 
<a class='Fadein' expr:href='&quot;http://reddit.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='external nofollow' target='_blank'><img alt='Stumble' height='100px' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjEwlMRlpNL02tK9j50gM665eqwITifEkXJLUpfnUk2e9qN1whMzrQShEKnUVs0afqieDRr5TRu26Mewxgps6K0h5zYK17SQ3e9oc0v73qRg3F0BVdMoeGSDYh-cMb7qJ7IEvv-w8yv6Zg/s400/REDDIT1.png' width='100px'/></a> 
<!--Facebook--> 
<a class='Fadein' expr:href='&quot;http://www.facebook.com/sharer.php?u=&quot; + data:post.url + &quot;&amp;t=&quot; + data:post.title' rel='external nofollow' target='_blank'><img alt='Facebook' height='80px' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgudfXYd7lUpg5i_t0JbpHhSTV0EXhVptZF1vqmUrl0w7hBjbgvZgb_n6TGNcxiyhvRIyqXQPEk6fwBoC-xQeRGLiT98Eroy4rUrwgYgMdgQay3yKVTh7jhXdlA5lfXDBnw3S4pm8cXp6o/s400/FACEBOOK1.png ' width='80px'/></a> 
<!-- Twitter --> 
<a class='Fadein' expr:href='&quot;http://twitthis.com/twit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='external nofollow' target='_blank'><img alt='Twitter' height='64px' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4pJpz9CLplLEab0jfOqj8aFGc2ur1bgYNQa_hFUmSt-arftxGFvKP-bbFotALBt8ehfxUS87ubzZzZHYDl-exDAPkI-oFkCNPqjemv_TJp0PBZalV6z_4LYP5zAwNFj5GJHQnv7vjw4U/s400/TWITTER1.png' width='64px'/></a></center>

</b:if>

    6.  Save your template and you are done!
Visit your blogs to see a beautiful change. :) You may also like these social networking buttons and widgets,

Add Social Media Share Widget To Blogger - Mouse Hover Effect


Adding The Social Connect Widget To BlogSpot

  1. Go To Blogger > Design > Edit HTML
  2. Backup your template
  3. Search for ]]></b:skin>  and paste the following code just above it,
/*  -------------i-o-m SOCIAL SHARE WIDGET-------------------- */
#search{width:350px; border:1px solid #E0DFD9;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2GLP-SVj_BJWk7YOKMUBK4ZugGfaZfAYBqLWqHI47moZ3J8qnhl69OrRCmMJpe27t6t-WdMx-nKJB2FKcxc9xKBUgNs9lA4ZjAUQQUTBc3eW8rY2KR_TJUgIsrmxmdYXkZOGd9R19y7s/s1600/search-bg.png) left top repeat-x;height:32px;padding:0;text-align:left;overflow:hidden}
#search #s{width:80%; background:none;color:#3F3F3F;border:0;padding:4px;margin:3px 0 0 12px;float:left}
#search .search-image{border:0;vertical-align:top;float:right;margin:8px 4px 0 2px}
#search-wrap{padding:15px 0}
.topsearch #search{margin-top:0;margin-bottom:10px}

.social-connect-widget{background:#FFF;border:1px solid #E7E6DE;padding:10px}
.social-connect-widget:hover{border:1px solid #CBCBC2;background:#F5F4EF}
.social-connect-widget a{text-decoration:none;font-weight:bold;font-family:Arial,Helvetica,Sans-serif;color:#4B4D4E}
.social-connect-widget a:hover{text-decoration:underline;color:#F77C04}
.social-connect-widget img{vertical-align:middle;margin-right:5px} 
  • To Change width of search box edit width:350px
  • To change width of search input area edit width:80%

     4.    Then Search for,
<div id='sidebar-wrapper'>
PS: In this part most of you will face problems as the coding for each template differ. If you could not find this code then do not panic and simply post your Blog URL in the comments.
     5.   Now Paste the following code just below it,
<div class='topsearch'>
<div class='clerfix' id='search'>
    <form action='/search' id='searchform' method='get'>
        <input id='s' name='q' onblur='if (this.value == &quot;&quot;) {this.value = &quot;Search here...&quot;;}' onfocus='if (this.value == &quot;Search here...&quot;) {this.value = &quot;&quot;}' type='text' value='Search here...'/>
        <input class='search-image' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgB-vkbPm2kUFlQAFNNNqfdWKzibxFEP0x0OXj_0LlvesJQGTH68M5m_05Lt49442d_5NvoI-nQl9mn4GYb2PGlvQW6WXHoa16myKpggYHnhPGSRsLa-fZ8SKmzIShU0tP6En5eM3tzdNM/s1600/search.png' title='Search' type='image'/>
    </form>
</div>
</div>
<div style='clear:both;'/>
<div class='social-connect-widget' style='margin-top:0px;margin-bottom:10px;'>
<a expr:href='data:blog.homepageUrl + &quot;feeds/posts/default&quot;'><img alt='RSS Feed' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgj2H45jCOefF_p_GbCadq2y3pSh4YYTBLe5r2IUjUWM-yrwwgS9N5tCyXynk2k8pbIsP-u1QI_Kp_9jY6c8u2ojr_AQL7lCQywIryqIy2mN5krzddl7JTHOKZDcxEJtxzAz7Qzt3IoVbbb/s1600/social-connect-rss.png' title='RSS Feed'/></a><a expr:href='data:blog.homepageUrl + &quot;feeds/posts/default&quot;'>Subscribe to our RSS Feeds!</a>
</div>
                       
<div class='social-connect-widget' style='margin-bottom:10px;'>
<a href='http://twitter.com/USERNAME'><img alt='Follow Us on Twitter!' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj-acauiQDoRitSpjQiTqEEko8ngwPvuU13-vA8xVe0gBo-xk1MZAyiSrw9sNhzzy5MEgZDibOn5lxlEJZVGgkAPKbWInaDVcmXGwOEmRyCnKclqpbU6Lj5xhqpAnu0I8jCxJJ2A3lCaE9q/s1600/social-connect-twitter.png' title='Follow Us on Twitter!'/></a><a href='http://twitter.com/USERNAME'>Follow Us on Twitter!</a>
</div>
<div class='social-connect-widget' style='margin-bottom:10px;'>
<a href='http://facebook.com/USERNAME'><img alt='Be Our Fan!' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlohxR1h9rytZ_UAWA6oi4W5ixSsQLwWsS9wRkPbghOTRvGli3fL8J_LqDy2xc8_yKq9OToHCJj9aRZNGlZD3WOc_s5YcToP08Hc5TEMe6fFEHwyTXqKeB5aE8D_Jc14SK51GrRJaZWBaU/s1600/social-connect-facebook.png' title='Be Our Fan'/></a><a href='http://facebook.com/USERNAME'>Follow us on Facebook!</a>
</div>
<div style='clear:both;'/>
<div class='addthis_toolbox'>   
<div class='custom_images'> 
<a class='addthis_button_twitter'><img alt='Twitter' height='32' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiOqkkL2DGCzsrAd4jKuJ7FAVhAHVZhA8plOQBvf9UEnwbNIAGJPNVSFGI6i33P2alH8MUBpVo-ELuP00q5pQtp8EUjCjyzqIyW4PTHYnCQinWLteylaXlIUaH8SACrhTl80k-doSGmkTE/s1600/twitter.png' width='32'/></a> 
<a class='addthis_button_delicious'><img alt='Delicious' height='32' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtZMeNRZ9-3p98lFJG3RcWzSsyGXCiQ6iRB1G0Avx1NjYjJLUFfdaECmOxHfl9WBIEVlnUnWKhV7_d0jX0JaPIu3ZZ3hG86xsJzYwd_wR5iux8lAbGIn7jkpwWsEZFKfSkvzT1MNqe4AU/s1600/delicious.png' width='32'/></a> 
<a class='addthis_button_facebook'><img alt='Facebook' height='32' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhausGmnVE_VZp4k6K6Kbmm9w-Lf6OtspOpI7fEJhyphenhyphenaBE1TWcSaLefUo4i2u-FWHf_0UutI4v_gK5LR1pJO1nRcIucz0InGqVdAw1s7AcJMhhAD4Hxba5F-GQT1Dh7cZ81wnQjOWTVmKFQ/s1600/facebook.png' width='32'/></a> 
<a class='addthis_button_digg'><img alt='Digg' height='32' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7k3rVeQPr0xFREvm5ARszi_ZVGCbivd0GGQ5ZEoppXcCfRNhFaYgy__4l90lKLmaoULFGmwBFSU-zsajHQgrkN7dD8jYUOCy0BIymBc-t_7-si-aR0KK4cII2lZ5hNAHcyZb7MtAEwVk/s1600/digg.png' width='32'/></a> 
<a class='addthis_button_stumbleupon'><img alt='Stumbleupon' height='32' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhq88yWjM8lYKhZrlZEYn0ppMLe5E92f8q7FPHN-iuljCWTzcRG1KLYsnSwFRgp8tQO_fNudELGKS7WEiQ_8oBVKeelY0AO7QzfRVGssmLRoO_PKQZ6FIyzJY07u9suV96qM9AGyWTsb-k/s1600/stumbleupon.png' width='32'/></a> 
<a class='addthis_button_favorites'><img alt='Favorites' height='32' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgici8vO4LMrT5VPh84AXdNGO_09vzTZShyQMVQP6JpQdMaTaI327S_k3RMolMvRBqIbPzNDSq4oKpBGMr1FyD4wu6Q7OQzNZcaTc4nepkogFyeRdPFY51NxqmfggrOi5wMGhDJMTN5cKM/s1600/favorites.png' width='32'/></a> 
<a class='addthis_button_more'><img alt='More' height='32' src='http://1.bp.blogspot.com/-duuV-meHLMg/TX0BILhZk3I/AAAAAAAABeM/ymXO0WYc80g/s1600/more.png' width='32'/></a> 
</div> 
<script src='http://s7.addthis.com/js/250/addthis_widget.js' type='text/javascript'/> 
</div> 
<div style='clear:both;'/> 
Make these changes:
  • Replace http://twitter.com/USERNAME with your twitter profile link
  • Replace http://facebook.com/USERNAME with your Facebook Profile link
      6.   Save your template and Bingo you are done! :>

Show Off Follower Counts For RSS, Twitter and Facebook Followers


Follow the Steps Below To Add The Follower Counter To Your Blogger Blogs

  1. Go To Blogger > Layout
  2. Choose Add a Gadget or Add a Page element
  3. Select HTML/JavaScript widget
  4. Paste the code below inside it,
<style>
.rss-mbt {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjt0QxfHlYrUjuc3uYMfq31TFuFfiYpRvUsu3PjqlOmUTgQZsOJGDVdMudXBQ2x0CPjTAS4x5aC3FyKximY-dLlIzRfO2Ymu1NbGVwshUY-9T83PAX5ZR8zv36B92zuny0RyUgroUv8SiQ/s800/RSS1.png) no-repeat;
    height: 64px;
    padding: 0px 20px 0px 80px;
    margin-top: 20px;
}
.twitter-mbt {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgXCplmj9IpNwvxeoKYIMwAE0XduWdEIK-iL_pqy0ms3217IZ9CEKKfbJlx9Pzmo5mlpCN6hY8qi9nTDLjUYZPfKHBL9i2pcObNjp3en4BzwSRcKNNHIYhHDkVoy0PdlaQ213igSseb65k/s800/TWITTER1.png) no-repeat;
    height: 64px;
    padding: 0px 20px 0px 80px;
    margin-top: 20px;
}
.facebook-mbt {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjOjK1HLS75rJdQ4fNYVRahTm4N5Bo1Uag-akqrmmImYrOL-HxGOE8FG973quLd2OMFDoztL55cJF6fe__kcZjognBuRe7Idlom-15XEU16XRMNeo10dCb1P5tdsp_wlBf25Iolvf3O8jM/s800/FACEBOOK1.png) no-repeat;
    height: 64px;
    padding: 0px 20px 0px 80px;
    margin-top: 20px;
}
.follower-rss, .follower-twitter, .follower-facebook {
    font-family: Georgia,  sans-serif, Times;
    font-size: 1.1em;
        font-style:italic;
        color:#289728;
}
.follower-rss span {
    font-size: 1.9em;
    font-weight: bold;
        font-style:italic;
        color:#FFB93C;    
}
.follower-twitter span {
    font-size: 1.9em;
    font-weight: bold;
        font-style:italic;
        color:#6DB6E6;    
}
.follower-facebook span {
    font-size: 1.9em;
    font-weight: bold;
        font-style:italic;
        color:#3889BA;    
}
</style>
<div class="rss-mbt"> 
<div class="follower-rss"> <span>515</span> loyal readers 
</div> 
<a href="ADD-RSS-FEED-URL-HERE" rel="nofollow">RSS feed</a> 
| <a href="ADD-RSS-EMAIL-FEED-URL-HERE" target="_blank" rel="nofollow">E-mail</a> 
</div>
<div class="twitter-mbt"><div class="follower-twitter"><span>1058</span> followers</div>                           
<a href="ADD-YOUR-TWITTER-URL-HERE" target="_blank" rel="nofollow" title="I definitely follow you back">Follow us on Twitter!</a>
</div>                       
<div class="facebook-mbt">                       
<div class="follower-facebook"><span>260</span> followers                            </div>                           
<a href="ADD-YOUR-FACEBOOK-URL-HERE" target="_blank" rel="nofollow">Join us on Facebook!</a>
</div>

NOTE:- Make sure to replace the bolded text with the required details (links of your Feedburner, twitter and facebook accounts) and replace the bolded numbers with your current follower counts. For example replace 515  with your current number of Subscribers, replace  1058 with the number of your twitter followers and replace 260 with the number of your facebook followers
     5.    Save and you are done! Now view your blog to see a stunning widget hanging on your sidebar :D

Add CSS Based Social Bookmarking Widget To Blogger Blogs & Websites


Now lets add them below each post in blogger ,
  1. Go To Blogger > Layout > Edit HTML
  2. Search For ]]></b:skin>
  3. And paste the code below just above ]]></b:skin>
/*--------MBT Bookmarking Widget (CSS#1)------*/
.mbt-bookmarking a {
display:block;
height:42px;
width:48px;
padding:0 9px;
float:left;
background:transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjXx1k-PsU-P797uAEIYV3z4cw0zwigsnkhtzZgo0HiFe8EvsXfcDVNZXrrW7fTCImTGs0ieGLa56eFQ1JVu7xYazbgdSVSnbIprtSRr3QuTXPTtaTbqRFxzsKN06ul0gd2LEcEeDkBEO5M/s1600/flapper.jpg) no-repeat;
}
.mbt-bookmarking a.delicious {
background-position:0px 0px;
}
.mbt-bookmarking a.delicious:hover {
background-position:0px -43px;
}
.mbt-bookmarking a.digg {
background-position:0px -86px;
}
.mbt-bookmarking a.digg:hover {
background-position:0px -129px;
}
.mbt-bookmarking a.stumbleupon {
background-position:0px -344px;
}
.mbt-bookmarking a.stumbleupon:hover {
background-position:0px -387px;
}
.mbt-bookmarking a.technorati {
background-position:0px -430px;
}
.mbt-bookmarking a.technorati:hover {
background-position:0px -473px;
}
.mbt-bookmarking a.twitter {
background-position:0px -516px;
}
.mbt-bookmarking a.twitter:hover {
background-position:0px -559px;
}
.mbt-bookmarking a.facebook {
background-position:0px -172px;
}
.mbt-bookmarking a.facebook:hover {
background-position:0px -215px;
}
.mbt-bookmarking a.reddit {
background-position:0px -258px;
}
.mbt-bookmarking a.reddit:hover {
background-position:0px -301px;
}
.mbt-bookmarking a.yahoo {
background-position:0px -602px;
}
.mbt-bookmarking a.yahoo:hover {
background-position:0px -645px;
}
.mbt-bookmarking a.rss {
background-position:0px -774px;
}
.mbt-bookmarking a.rss:hover {
background-position:0px -817px;
}
     4.     Now Check the box “Expand Widget Templates” at the top-right-cornerexpand-widgets
     5.      Search for this code <data:post.body/> . If you can not find it then search for this one <p><data:post.body/></p>                                     (Tip:- Press Ctrl + F)
     6.      Just below <data:post.body/> OR <p><data:post.body/></p>, paste this code,
<!--MBT Bookmarking Widget (HTML)--> <div class='mbt-bookmarking'>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<br/><font color='#289728' face='ms sans serif' size='3'><b>Kindly Bookmark and Share it:</b></font>
<br/><br/>
<!-- Delicious -->
<a class='delicious' expr:href='&quot;http://del.icio.us/post?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='external nofollow' target='_blank' title='Add this to Delicious :&gt;'/>
<!--DIGG-->
<a class='digg' expr:href='&quot;http://digg.com/submit?phase=2&amp;url=&quot;  + data:post.url' rel='external nofollow' target='_blank' title='Digg this :&gt;'/>
<!--Stumble-->
<a class='stumbleupon' expr:href='&quot;http://www.stumbleupon.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='external nofollow' target='_blank' title='Stumble this :&gt;'/>
<!-- Technorati -->
<a class='technorati' expr:href='&quot;http://technorati.com/faves?add=&quot; + data:post.url' rel='external nofollow' target='_blank' title='Fave this :&gt;'/>
<!-- Twitter -->
<a class='twitter' expr:href='&quot;http://twitthis.com/twit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='external nofollow' target='_blank' title='Tweet this :&gt;'/>
<!--Facebook-->
<a class='facebook' expr:href='&quot;http://www.facebook.com/sharer.php?u=&quot; + data:post.url + &quot;&amp;t=&quot; + data:post.title' rel='external nofollow' target='_blank' title='Share this on Facebook :&gt;'/>
<!-- Reddit -->
<a class='reddit' expr:href='&quot;http://reddit.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='external nofollow' target='_blank' title='Bookmark and tag this :&gt;'/>
<!-- Yahoo -->
<a class='yahoo' expr:href='&quot;http://myweb2.search.yahoo.com/myresults/bookmarklet?t=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='external nofollow' target='_blank' title='Bookmark this :&gt;'/>
<a class='rss' expr:href='data:blog.homepageUrl + &quot;feeds/posts/default&quot;'/>
</b:if></div>

You can replace the bolded text in green with any statement you like. You can also change the text colour i.e #289728 with any colour you like. Use our Color Chart for this purpose.
   7.     Now Finally save your template and view your blog to see a colorful bookmarking widget just below all your posts :>
That’s All!
If you want larger icons approximately about 64px by 64px in size, then paste the following code just above ]]></b:skin>  for step#3 instead.
/*--------MBT Bookmarking Widget (CSS#2)------*/
.mbt-bookmarking a { 
display:block; 
height:55px; 
width:64px; 
padding:0 5px; 
float:left; 
position:relative; 
background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLhkhbBNza0WrKKvysLjo9h4RAXc0-zUe9ldbmmjt3JqUdsiA0QxMJ9Vq_EN5sHfvV1slHFPqo0Zae35NK2ZcDRIsi-ZIPuZ1HRP7KKnguUxXVIMeAB6Xl-JjuR3N2CPv9dkcfl7nq1taV/s1600-h/flapper2.jpg) no-repeat; 

.mbt-bookmarking a.delicious { 
background-position:0px 0px; 

.mbt-bookmarking a.delicious:hover { 
background-position:0px -57px; 

.mbt-bookmarking a.digg { 
background-position:0px -114px; 

.mbt-bookmarking a.digg:hover { 
background-position:0px -171px; 

.mbt-bookmarking a.stumbleupon { 
background-position:0px -228px; 

.mbt-bookmarking a.stumbleupon:hover { 
background-position:0px -285px; 

.mbt-bookmarking a.technorati { 
background-position:0px -570px; 

.mbt-bookmarking a.technorati:hover { 
background-position:0px -627px; 

.mbt-bookmarking a.twitter { 
background-position:0px -684px; 

.mbt-bookmarking a.twitter:hover { 
background-position:0px -741px; 

.mbt-bookmarking a.facebook { 
background-position:0px -456px; 

.mbt-bookmarking a.facebook:hover { 
background-position:0px -513px; 

.post-bookmark a.reddit { 
background-position:0px -342px; 

.mbt-bookmarking a.reddit:hover { 
background-position:0px -399px; 

.mbt-bookmarking a.yahoo { 
background-position:0px -798px; 

.mbt-bookmarking a.yahoo:hover { 
background-position:0px -855px; 

.mbt-bookmarking a.rss { 
background-position:0px -912px; 

.mbt-bookmarking a.rss:hover { 
background-position:0px -969px; 
}