June 16, 2011

Widgets

Floating Google +1, Facebook, Twitter Buttons For Blogger


Floating buttonsUPDATE:- To add a floating widget to the left of all your posts like in this blog then please read: Floating Counters Next To Posts


Finally the Sliding Counters! Till now we learned and created many floating social share buttons but those button widgets in fact do not slide when the user scrolls the page up or down. The only thing I needed was a well constructed JavaScript code that could make the widget to float up and down synchronously with the webpage movement. Thanks to Jtricks' Floating Menu code, we finally managed to bloggerize the floating effect and this widget is all ready to be added to your beautiful blogger blogs.  Kindly view the demo first,



Live Demo


Adding Floating Social share Counters 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:229px;
    top:0;
    left:0;
        z-index:100
}

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


<div id="floatdiv">
<div id="mbtsidebar">
    <table cellpadding="1px" cellspacing="0">
    <tr>
    <td style="border-bottom: 1px solid #E8E8E8; padding:5px 0 2px 0;">
<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="" send="false" layout="box_count" show_faces="false" font=""></fb:like>
    </td>
    </tr>
    <tr>
    <td style="border-bottom: 1px solid #E8E8E8; padding:5px 0px;">
<g:plusone size="Tall" expr:href="data:post.url">
    </g:plusone></td>
    </tr>
    <tr>
    <td style="border-bottom: 0px solid #E8E8E8; padding:5px 0 0px 0;">
<a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-via="mybloggertricks">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: 300,
    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>
Make these changes:
  • Replace mybloggertricks with your Twitter username
     4.  Save your widget and you are almost done!
PS: If you have already added the Google +1 Button somewhere in your blog then you may skip step5.
    5.  Now Go To Blogger > Design > Edit HTML   and search for this,
</head>
Just above it paste the following code,
<script src='http://apis.google.com/js/plusone.js' type='text/javascript'> {lang: &#39;en-US&#39;} </script>
     6.  Save your template and say Bingo!
Visit your blog to find it hanging to the left. I hope you liked it as much as MBT had fun creating it. Peace and blessings! :)

Credits:

Web designers, developers and Blog owners are requested to attach attribution to MBT blog if they wish to share this tutorial with their readers. Any copyright violation will be reported straight to DMCA. Kindly respect the efforts.



If you enjoyed this post and wish to be informed whenever a new post is published, then make sure you Subscribe to our regular Email Updates!

If you don't want to get yourself into Serious Technical Trouble while editing your Blog Template then just sit back and relax and let us do the Job for you at a fairly reasonable cost. Submit your order details by Clicking Here »

98 comments:

Anonymous said... #

nice widget mohd_
Sorry for disturbing on this post,but plz help me.
i have successfully moved my domain www.krackoworld.blogspot.com to www.krackoworld.com and now plz tell me what to do with my webmaster account,i want to redirect all old pages to new one. and also tell me about htaccess and 301 redirect.

karan chauhan
www.krackoworld.com

Felix on Jun 16, 2011, 12:32:00 PM said... #

@ Mohmd, once I implement the above code, will my initial like, tweet and +1 data disappear? I mean if I had like several 100s of likes, after I implement your trick will it roll to zero? Also pl do check your previous counter that I implemented. The +1 section slow load compared to others (tweeter, like) is a not normal. Pl do check my code and suggest a remedy. thanks

Mohammad Mustafa Ahmedzai on Jun 16, 2011, 8:01:00 PM said... #

@karan
I will write a detailed post on it brother within two days. Please keep in touch. That will be more helpful.


@Felix
Your all social share buttons are connected to servers. they are programmed so that even if you replace them with another type, the counts will still remain there as they are continuously saved on servers. You may keep a backup of old buttons though.

The +1 button is loading slow on all templates. Google will solve this issue soon. You can happily make the changes.

Paul Pokorny on Jun 28, 2011, 8:48:00 PM said... #

The facebook icon does not load on my blog. Please look at it http://www.cecacat.com

pakcompany on Jun 29, 2011, 8:40:00 PM said... #

you made my day thanx.. :)

Dav7 on Jun 30, 2011, 5:48:00 PM said... #

Could you help me understand why this happens?

http://img836.imageshack.us/img836/1772/20110630134539.jpg

I installed the widget in 2 blogs, in 1 happened the same but I changed the page element location and now its fine, on this other blog I tried change to many places but is not working :S

Mohammad Mustafa Ahmedzai on Jun 30, 2011, 7:11:00 PM said... #

@Paul

Copy paste the code again or take it from this page-> Counter buttons

@pakcompany
My pleasure brother.

@dav7
Are you using it one the new blogger template designer templates? If yes then it wont work.

pyejal on Jul 1, 2011, 3:11:00 AM said... #

hi,
mine didn't work.why is it happened?
http://pyejal.blogspot.com/

Mohammad Mustafa Ahmedzai on Jul 1, 2011, 6:40:00 PM said... #

@pyejal

At present the widget is not compatible with Blogger template Designer templates and works with custom templates only.

Do Lam on Jul 2, 2011, 10:35:00 PM said... #

I'm sad. Your nice trick is not working in my blog. http://mobimas.blogspot.com

Zombie Hunter on Jul 5, 2011, 8:05:00 PM said... #

Hi Mohammad, how can i add this plugin only on the post pages?

I also really apreciate to have it on the right of the main column :)

Thanx

Scipio on Jul 14, 2011, 11:39:00 PM said... #

any way to add this on the right hand side? tried switching left under #floatdiv to right and other places where it says left to right, but it ends up with the lines in between the buttons too far to the right and not in the middle. Help please...

pursuite on Jul 15, 2011, 5:40:00 PM said... #

not working
http://xxijizz.blogspot.com

pursuite on Jul 15, 2011, 6:08:00 PM said... #

its going so fast
thats the problem

d'adjie_blog on Jul 15, 2011, 7:27:00 PM said... #

hi,mine is working
but how to edit the position of the widget??
check out
http://dhimasadjiep.blogspot.com/
its work but why the position is right there??
please help

pursuite on Jul 15, 2011, 8:32:00 PM said... #

pisition is not good
guys plzzzz help me

Mohammad Mustafa Ahmedzai on Jul 16, 2011, 2:19:00 AM said... #

@Do Lam

Yes pal this sliding one does not works with new blogger designer templates though you can try the fixed ones.

@zombie

You may kindly read this post:
http://www.mybloggertricks.com/2011/01/how-to-show-and-hide-widgets-in-blogger.html

@Scipio
For doing that kindly do this:

Search for targetX:

Set its value to 900 and see if it fits to right perfectly. You can increase or decrease the value 900.

@pursuite
YOu are using the new blogger template and this widget does not work with it. Kindly use this widget:
http://www.mybloggertricks.com/2011/04/add-floating-facebook-like-and-retweet.html

@dadjie @pursuite

For doing that kindly do this:

Search for targetX:

Set its value to 900 and see if it fits to right perfectly. You can increase or decrease the value 900.

d'adjie_blog on Jul 16, 2011, 12:23:00 PM said... #

awesome!!
thank you,, :D

Zombie Hunter on Jul 19, 2011, 4:01:00 PM said... #

Hi Mohammad, thanx for your reply !!!

Do you know how ca i fix the position of the floating bar on chrome and ie? unfortunately is not align in the same way of firefox :(

thank you

ms2 on Jul 23, 2011, 3:11:00 AM said... #

how to change the box color to white?

Kundan Lohar on Jul 23, 2011, 7:13:00 PM said... #

floating bar working with my page kundanlohar.blogspot.com
but it is going downwards always and tweet option is not able to show becoz of it is rolling out downwards and when page ends it is still going downwards
not working perfectly please help

meg on Jul 29, 2011, 11:43:00 PM said... #

Hi, can you share the code to add the social media buttons you have placed at the top of your posts? Thanks!

meg on Jul 30, 2011, 2:16:00 AM said... #

nevermind, I found your other post. Thanks!

milind on Aug 4, 2011, 12:03:00 PM said... #

Is there a way to add the 'add this' to the floating gadget bar?

http://milindblog-hobee.blogspot.com/

lookers on Aug 6, 2011, 8:53:00 AM said... #

sir how can i put it on the left center.. cause it show on the left but but it is not in the middle.. this blocks the two lower buttons the [0] and [tweet button]. help.. thanks

lookers on Aug 6, 2011, 3:58:00 PM said... #

sir follow up question.. can i put on it to the left most part of my blog cause the floating icons pass over some of the content of my blogpost.. thanks

Noushad Vadakkel on Aug 12, 2011, 4:14:00 PM said... #
This comment has been removed by the author.
Noushad Vadakkel on Aug 12, 2011, 4:15:00 PM said... #

very nice and simple ..thaanks ...:) but dear i have one problem ..can you help me?

in my blog it appears inside the post ....!!!! pls give me a solution ..thanks in advance ..:)

omtiger.com on Aug 17, 2011, 6:43:00 PM said... #

how to make blockquote like yours?

poikiloblastic on Aug 17, 2011, 11:32:00 PM said... #

Request: OK, it works...so now how do I block/hide it on other sites?

Reasoning: The floatie covers content if you don't have the browser window at least an extra couple hundred pixels wider than the main document body.
Some people might not have the screen real estate to do that, and while I do technically have the space, I don't keep my browser window maximized (don't like having huge blank borders).

isengdude on Aug 20, 2011, 7:44:00 AM said... #

just want to ask, looks like this code error on 3 colums blog, could you please check it http://isengdude.blogspot.com

isengdude on Aug 20, 2011, 8:17:00 AM said... #

@isengdude
if i scroll down, it always go down and nver go up

M.j on Aug 20, 2011, 11:28:00 AM said... #
This comment has been removed by the author.
True Color Painting Wall on Aug 22, 2011, 1:53:00 PM said... #

HI,

Like it. But I want to see the faces of the person who liked my blog in facebook . Is it possible ?

shonu on Aug 23, 2011, 1:31:00 AM said... #

woww...its working..

www.xpressmuziq.blogspot.com

Reyad010 on Aug 24, 2011, 7:38:00 PM said... #

This is just outstanding!
I found your blog just awesome so the post is.
One question. Can I set the starting and the ending point of Slide like wordpress plug-in?

paho on Aug 26, 2011, 7:12:00 PM said... #

thanks...

http://modern-buildings.blogspot.com

abdulrafay on Aug 28, 2011, 4:46:00 AM said... #

hi brother mustafa,
can you design this floating widget for me its same like yours but has more features in one.heres link:

http://dl.dropbox.com/u/22701588/Floatingwidget.JPG

and heres the website which uses it:

http://naldzgraphics.net/freebies/30-free-high-quality-gadget-psd-files/
Thanx
abdulrafay

சிவா on Aug 28, 2011, 10:28:00 AM said... #

Thanks man .... Thanks a lot

www.tamilsms.net

RAOLARAIB on Aug 28, 2011, 4:19:00 PM said... #

thanks

Angelo on Sep 5, 2011, 11:33:00 PM said... #

@Anonymous

wow... that's off-topic but i also experience that and my blog is ok now... i wanna know first where did you purchase your domain name, because i bought mine from GoDaddy. If you are going to type http://w7xtreme.blogspot.com, you will be redirected to http://www.win7extremeblog.info

same is true when you type http://win7extremeblog.info
because
http://win7extremeblog.info
is diffrefent from
http://www.win7extremeblog.info

oh... it's off topic really, but let admin show this to help a pal :)

Aduka on Sep 7, 2011, 3:06:00 AM said... #
This comment has been removed by the author.
Vishu on Sep 10, 2011, 5:35:00 PM said... #

thx for fshare falling widget thx u very much plz check out my blog if u like book mark your page visit back soon to check out more widget and info http://onestepdownload.blogspot.com/

sheref shokre on Sep 28, 2011, 10:08:00 PM said... #

How can I pot it down within the message on the left side fixed Can you help me please

Target SMO on Nov 1, 2011, 12:04:00 AM said... #

awaysome brother........realy works

http://organic-seo-solution.blogspot.com/

Mr.Who on Nov 9, 2011, 8:47:00 AM said... #

how to add more button?

I wanna aplly it on
http://free-mortgage-rate-calculator.blogspot.com/

Anmol Rawat on Nov 9, 2011, 6:25:00 PM said... #

cant get it working :/
http://cinema-n-celebrities.blogspot.com/

Anmol Rawat on Nov 11, 2011, 11:32:00 PM said... #

now am more interested in how you put those 5 share buttons below every post?

Admin on Nov 18, 2011, 6:56:00 PM said... #

nice one check this out

Vivek Nath.R on Nov 22, 2011, 8:25:00 PM said... #

floating bar working in my blog vtrickz.blogspot.com
but it is going downwards always and tweet and +1 option is not able to see coz it is rolling out downwards
plz help me. .

Let's Wage a War Against Pornography in Pakistan on Nov 22, 2011, 11:29:00 PM said... #

thanks for this widget and plz help me in adding facebook comments box on my blog
have a look
http://sntpp.blogspot.com/

Ana Laura on Nov 24, 2011, 6:30:00 AM said... #

It works perfectly well, thanks. The only problem is that in the post pages i have the sidebar hidden, so the buttons don't appear (at least i guess that's the reason) Do you know if there is a way to include them anyway?

Thank you!!!

Fabian on Nov 25, 2011, 9:55:00 PM said... #

Well done. Thanks!

I had to do some modification so that it matches to my blogger layout (size, scrolling speed, backgound), but now it works just perfect ;-)

You can find it at my car tuning blog, just take a look to see it working:

http://miatastyle.blogspot.com/

Muh yunan jihadillah on Nov 28, 2011, 5:05:00 PM said... #

thanks for toritorial, visit me back at http://alizzahfirtibatilummah.blogspot.com/

sopian on Nov 30, 2011, 8:13:00 AM said... #

wow thanks.....

lakshmi kanthan on Dec 18, 2011, 6:54:00 PM said... #

thanks a ton.. it worked for me...

Rishikesh Chincholkar on Dec 20, 2011, 3:26:00 PM said... #

the widget came to right side please help

desi on Dec 22, 2011, 7:39:00 PM said... #

Thanks

MrSalue on Dec 24, 2011, 3:56:00 PM said... #

Thanks for Sharing i wanna put that on my blog www.ksalue.blogspot.com

i dont have a twitter account i just want people to share on twitter and FB and G+ so i dont know what to put on the twitter thing since i dont have a twitter account

and i cant find the html for widgets ? >.<"

when i press on the widget hing tells to put url only

أدمن هوانا مصري on Dec 25, 2011, 3:55:00 AM said... #

hi

how to move it to the right position
my blog is in arabic !!!!

أدمن هوانا مصري on Dec 25, 2011, 6:14:00 AM said... #

my blog link

www.hwanamsry.com

aiden tyler on Dec 27, 2011, 11:50:00 AM said... #

hi mohamed .. i m riyaz

i just did this process .. the floating bar is below the page its not locating at the current side of the post pls help me wit this

Jérôme on Dec 30, 2011, 3:49:00 AM said... #

Hi, i have a problem with this html code, like you can see on my website : http://www.e-s-calope.com/ the count of like is not show, do you know why ?
Thank you (sorry for my bad english!)
ps : You have a great website !

Crack-net on Jan 2, 2012, 4:30:00 PM said... #

hi,
thx for the widget.
Could you tell me how to make the widget floating like in you blog... I mean at the same position whatever the screen resolution and width.

Jose Delgado on Jan 7, 2012, 9:51:00 AM said... #

I tried but is not working. This is my page link. Which part of it I need to replace in the script. Thanks

http://www.facebook.com/pages/Amardon-War-Field/288829401161546

Muhammad Hidayat on Jan 10, 2012, 3:11:00 AM said... #

like this post...
please link back my blog => http://anakgilaonline.blogspot.com/

DR.....LOLZ on Jan 23, 2012, 6:43:00 AM said... #

AWSUM POST BUT MY SLIDE BAR IS APPEARING ON THE RIGHT HAND SIDE OF ALL POST WHAT TO DO I WANT IT TO APPEAR ON LEFT HAND SIDE PLZ SUGGEST HELP:)

Mohammad Mustafa Ahmedzai on Jan 23, 2012, 7:17:00 AM said... #

To add a widget like used in this blog please read: "Floating sharing widget to the left of Posts"

Secrecy on Jan 25, 2012, 5:38:00 PM said... #

Hi Mohammad, how do I add this floating share button on each of my post separately?

+G for GENIUS+ V Gautham Navada on Feb 10, 2012, 3:02:00 PM said... #

hi admin..hope this counter is not working properly!!
FB like is only working correctly..remaining 2 will take the url of home page itself!!

Bilal Tanveer Dar on Feb 26, 2012, 7:20:00 PM said... #

thank you very much i have now added this widget check it out
Software tips tricks

badmaash company on Feb 28, 2012, 6:56:00 PM said... #

IN MY BLOG ITS NOT SHOW ITS DOWNTO THE SCREEN!!

Football Manager Blog™ on Mar 1, 2012, 2:48:00 PM said... #

not even near the widget you are using on your site, please fix the problem with this...

see here what I'm talking about:

www.footballmanagerblog.org

Rich on Mar 3, 2012, 5:56:00 PM said... #

Thanks for posting this. I see the widget but it is not on the far left and is covering the writing in my blog. Also, it is moving at the bottom too quickly to be seen floating. Any suggestions to fix are appreciated. thanks

http://newhampshirerestaurantreviews.blogspot.com/

Putri Arisnawati on Mar 6, 2012, 7:10:00 PM said... #

This is very good social bookmark widget. I think this widget will make users interest to share a post.

FOR THE PEOPLE on Mar 16, 2012, 5:53:00 PM said... #

i like your blog's templete could you please send me its html code my mail(venkatesh.innovate4@gmail.com)

Rehut Team on Mar 19, 2012, 9:39:00 PM said... #

Thanks

www.rehut.blogspot.com

arhamvhy on Mar 28, 2012, 9:21:00 AM said... #

I like it, very cool..

E-ksiazka24.pl on May 3, 2012, 11:19:00 AM said... #

hello

how change widget's position?

ajay on Jun 7, 2012, 6:34:00 PM said... #

nice but tell me that is not coming slide with the page help me plze

auni on Jun 22, 2012, 2:24:00 PM said... #

i really appreciate it, thanks now i can make float share well
http://catatan-harian-auni.blogspot.com/

HairyChestsRule on Jun 26, 2012, 12:16:00 AM said... #

Hi Mohammad,

Got it to work nicely.
Pity the images are outside links so they cannot be resized uniformly, they differ just enough to be noticed. But hey, who's complaining.

When I'm done tweaking my theme I probably won't be back as often but I look forward to all your tips and tricks in the mail.

Thanks and good luck,

Pieter

prinsesskittyku on Jul 18, 2012, 12:55:00 AM said... #

not work for me =(

Eros Dé Ashik on Aug 9, 2012, 2:49:00 PM said... #

how change fb like?
all time show 28 like

Free Any Download

Ravi Mittal on Aug 28, 2012, 2:27:00 PM said... #

It's Really Great Web site thanks Sir.
I Found Great Information by your site which was outbox in my mind..

pushpinnder singh on Oct 4, 2012, 12:05:00 PM said... #

sir.in my blog this widget is shown on right side i want to show it left side.....Pls help me.....
www.pintu1313.blogspot.in

akbar khan on Oct 10, 2012, 4:50:00 PM said... #

hi
have a look at the blog
as u can see i just have facebook share button,but i just want like and share both buttons or just one i.e like button
so wt should i do
regards
http://desktophqwallpapers.blogspot.com/

noor hodekar on Oct 29, 2012, 4:03:00 PM said... #

Shukriya bhai... but ye screen ke nische chala jaata hai ... plz. have a look :

http://noon-meem.blogspot.in/

christianchordsmusic on Nov 9, 2012, 8:12:00 AM said... #

hello i may i know how to adjust margin

Mel Y-CHENG on Jan 29, 2013, 11:43:00 PM said... #

Hi,

Nice post and thanks a lot! :-)
But maybe it's a good idea to ad a example of how it will look for people who's English isn't very good. Like mine for example.

please have a look at my blog,

Mel

photography-do.blogspot.nl

A Scott on Feb 1, 2013, 7:13:00 AM said... #

mine is up there but you can't get to it when I scroll down it keeps scrolling and i can't see it.

A Scott on Feb 1, 2013, 7:15:00 AM said... #

Opps I forgot to add my site its:
theliteraryhoarders.blogspot.com

BilsTech on Feb 19, 2013, 1:16:00 AM said... #

Salam! please i want to ask from you all expert people that please tell me how i have to publish my website that people may visit my blog and i get good response in advertise account in chitika. please tell me urgent about how to marketing???

Zeeshan Ahmed on Mar 15, 2013, 9:47:00 PM said... #

Perfect work (y)

Chill Youout on Mar 22, 2013, 4:44:00 PM said... #
This comment has been removed by the author.
pranish shrestha on Mar 31, 2013, 9:14:00 PM said... #

@Anonymousi want to know how did you convert yout domain from .blogspot to .com

pranish shrestha on Mar 31, 2013, 9:16:00 PM said... #

I have sucesssfully added the Floating Social share Counters to Blogger but the problem is that the bar keeps on moving when the page is scrolled. I want to fix this. Please help me

androidistsblog.blogspot.in on Apr 8, 2013, 8:03:00 AM said... #

not working dude

Click Here To add Comment

Confused? Feel free to ask

Your feedback is always appreciated. We will try to reply to your queries as soon as time allows.

Note:
1. To add HTML CODE in comments then please use our HTML Encoder
2. You can always Test the tutorial on our HTML Editor
3. No cheesy/spam Comments tolerated Spam comments will be deleted immediately upon our review.

Regards,
Mohammad

Support Us

If our Tutorials have helped you a little, then kindly spread our voice using the badge below:-

or try a Beautiful Banner


Widgets

 
  • MBT Icons and buttons

    Icons and Buttons

    Our resources have been successfully downloaded over 10K times and found almost every where. Get yours!

  • choosing webhost for a blog

    Why HostGator?

    Learn Why we chose HostGator as our Web Host and find discount coupons to kick start your blog today!

  • SEO Settings for blogger

    ALL IN ONE SEO PACK 2012

    Learn every single SEO tip that will boost your blog's ranking and organic traffic. We got them all!

  • Blogger widgets and plugins

    Visit MBT's Blogger LAB

    Why not take a tour of all great Blogger widgets published so far? You Name it we have it!

  • become a six figure blogger!

    Become a SIX FIGURE BLOGGER

    Learn what it takes to become a successful entrepreneur and build a living online!

About The Author

Hi! I am Mohammad, a certified SEO Consultant, Pro Blogger, Computer Engineer and an addicted Web Developer. Read More..

Recipes

SEO Affiliate Marketing Social Media

Make Money Online Web hosting

Blogging Tips Web Designing

Plugins and Widgets Blogging Ethics

Recent Comments

Popular Series

Powered by:

My Blogger Tricks © 2013. All Rights Reserved | Contact |