December 3, 2009

Widgets

Add CSS Based Social Bookmarking Widget To Blogger Blogs & Websites


Social-Bookmarking-Widget-For Blogger Never thought this EID would turn the best designing period of my life. After a lot of trial and error I managed to create a social bookmarking Icons widget using advanced CSS technique. I had consulted a lot of my friends on how to give an hover effect to social bookmarking icons below blogger posts using simple CSS but all methods that were suggested unfortunately did not help. I worked hard using the MBT HTML Editor to find out a way and luckily returned with a successful and unique CSS code that made my EID day an ever forgettable one!

Kindly have a demo of this widget before reading the tutorial. Remember to Hover your mouse cursor over the icons.

Social Bookmarking Widget For Blogger

This widget uses a total of 20 Icons but believe it or not it is super-fast and loads with in seconds. I merged all 20 Icons into one big image and used CSS Image stripes technique to make the icons appear at right positions. Fortunately this saves a lot of load time, because the browser will load all images at once and doesn’t need to contact the image server several times for uploading the images.

This is the big image I used,mbt-bookmarking-widget

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(http://4.bp.blogspot.com/_7wsQzULWIwo/SxYPky2M4VI/AAAAAAAACcs/SGTHHyAiZ4A/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-corner expand-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(http://2.bp.blogspot.com/_7wsQzULWIwo/SxYfHuF_iwI/AAAAAAAACc0/SV0a0a3nAqk/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;
}

 

For this tutorial I used “The Flapper” Icon Set

Do let me know how useful was this tutorial for you. Take care!




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 »

62 comments:

Manisha.Rautela.Bisht on Dec 3, 2009, 12:51:00 AM said... #

Great Mohd ,
This is really awesome))...really nice.
Thanks for bringing something different and unique.

joe said... #

Mohammad I dont know how should I thank you! A big huggy to you!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


I am in love with your blog

Mohammad Mustafa Ahmedzai on Dec 3, 2009, 1:52:00 AM said... #

@Manisha and @joe

My pleasure. Thanks for the encouragement!

Jayaraj.chinna on Dec 3, 2009, 6:07:00 PM said... #

nice post i was attracted by the images
and one more thing why dont you add vertical columns in cutebox template
when i am commenting with my name/url profile image is not showing in my blog jayarajyadav.blogspot.com profile images is also not showing
help me plz

Sreejesh on Dec 3, 2009, 8:16:00 PM said... #

Hi, Mohd, cool trick its nice. Could you please post about slideshows from related posts. like text slide or with thumbnails with a color line border.

Mohammad Mustafa Ahmedzai on Dec 4, 2009, 10:30:00 AM said... #

@Chinna

I will publish a more updated version of cutebox if readers demand will increase for an extra column.
Profile images not showing is indeed an issue faced by all bloggers. I hope blogger will solve it soon.


@Sreejesh

Replated posts or featured posts with slideshows and thumbnails are always a blog owners first impression but when it comes to increase your blog load time most bloggers often step-back. Same has happened with me. They look good but they discourage readership with slow load.
For related posts with thumbnails use linkwithin.com . They have a pretty fair widget.

Sai @BloggerStop.Net on Dec 4, 2009, 3:16:00 PM said... #

Nice Widget Mohd.
It perfectly blends with your cute box template.
Keep up the work :)

Mohammad Mustafa Ahmedzai on Dec 4, 2009, 3:18:00 PM said... #

@Dsai

It is a pleasure to have you here. Thanks for the remarks!

Jayaraj.chinna on Dec 6, 2009, 2:07:00 PM said... #

sorry that i am troubling but i recently changed my template and tried same comment bubble but it is not showing as i like that should come after the post title help me plz
hope u understand

Mohammad Mustafa Ahmedzai on Dec 6, 2009, 6:45:00 PM said... #

@chinna

Unfortunately I am badly busy these days. Will try to help you soon as I previously did.

pixelshots on Dec 14, 2009, 9:44:00 PM said... #

hi,,

appreciate your mind to help others.. unfortunately nothing showing up in my blog.. tried both the css codes given by you.. Don't know what is wrong with it friend..

Mohammad Mustafa Ahmedzai on Dec 14, 2009, 9:57:00 PM said... #

@pixelshots

Did you added the HTML part just below data:post.body?

thanphong07 on Jan 30, 2010, 10:23:00 PM said... #

That's wonderful ! Thanks for share !

Amirul Faiz Abd. Razak on Mar 19, 2010, 6:41:00 AM said... #

Alhamdulillah.. This is so good.. Thanks bro.

Blogger Terrorist :@ on Mar 28, 2010, 11:20:00 PM said... #

I had 2 hours of damned errors in blogger :@@@@@
1: "div" end-matching
30 minute to locate the (censored) "div" tag but no matching
2: the google company and writing this comment

So could you please really solve my issue cause its not fair --> 2 HOURS
Choukran

Mohammad Mustafa Ahmedzai on Mar 29, 2010, 11:49:00 PM said... #

@Blogger Terrorist :@

Dear it sounds you are really pissed!! :p
I would love to help you but I would appreciate if you write in detail what problem are you facing. What div tag are you searching for? Is it related to the tutorial on this page? Please clarify so that I could suggest something..

Black-Market on Apr 1, 2010, 8:56:00 PM said... #

Dear Mohammad
I had a bad mood in that day.So dont misunderstand me :D
Im using your mbt church theme.It come with normal social bookmarking,but when i try to delete it to replace it with the new bookmarking above then save it, it say " The element type "div" must be terminated by the matching end-tag " but where is that "div" i didnt find it & i had this errors only in step 6

Thats my problem and im extremly sorry to any inconvenience!
10x

Mohammad Mustafa Ahmedzai on Apr 2, 2010, 8:49:00 PM said... #

@Black Market

It's ok! We are humans after all! :> I just wrote a reply to you of about 400 words and when I clicked post I got an error and the comment was lost..ArGG! But I am used to it!

Well instead of debugging the problem the best solution will be to follow the steps below to successfully replace the correct code in your template with the icons in the post above.


1. After you have added the CSS code in step#3 then Inside your template search for this code,
<br/><center><span style='color: #7AA1C3; font-size: 12px; font-family: Verdana;);'><b>Kindly Bookmark this Post using your favorite Bookmarking service:</b></span><br/>
<a expr:href='&quot;http://technorati.com/faves?add=&quot; + data:post.url' rel='external nofollow' target='_blank'><img alt='Technorati' src='http://3.bp.blogspot.com/_7wsQzULWIwo/Sl-Oc3ziCTI/AAAAAAAABgY/4X3tEFqHAkE/s400/technorati.png '/></a>
<!--DIGG-->
<a expr:href='&quot;http://digg.com/submit?phase=2&amp;url=&quot; + data:post.url' rel='external nofollow' target='_blank'><img alt='Digg This' src='http://4.bp.blogspot.com/_7wsQzULWIwo/Sl-ONnT0bWI/AAAAAAAABgA/L-Ex1vnxS5U/s400/digg.png '/></a>
<!--Stumble-->
<a 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' src='http://1.bp.blogspot.com/_7wsQzULWIwo/Sl-OY5rkKfI/AAAAAAAABgQ/FwgX60CowGI/s400/stumbleupon.png'/></a>
<!--Reddit-->
<a 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' src='http://3.bp.blogspot.com/_7wsQzULWIwo/Sl-RMjrrfDI/AAAAAAAABgw/4prAhRyxtx8/s400/reddit.png'/></a>
<!--Facebook-->
<a 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' src='http://2.bp.blogspot.com/_7wsQzULWIwo/Sl-OSD_E3TI/AAAAAAAABgI/KYB7uFgNm6U/s400/facebook.png '/></a>
<!-- Twitter -->
<a 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' src='http://4.bp.blogspot.com/_7wsQzULWIwo/Sl-Oicftv4I/AAAAAAAABgg/G3YmMC9glXw/s400/twitter.png'/></a></center>



2. Now replace this code with the code in step 6.

3. That is it. View your template to see a change like this one -> http://mbt-lab.blogspot.com/2009/12/wfewefwefwefwe.html


Hope the answer is convincing! :D

Black-Market on Apr 3, 2010, 11:01:00 PM said... #

Hey Mohmmad :D
Hehehe We've got to be patient(to a limit of course). Alhamdullah its working 100%, may be i was wrong about the "div" tag.I dont know. Im facing a thorny problem : I want to center the bookmarking icons like i centered the text 'Kindly Bookmark....' HOw to?

See you after your comment

Regards. :>

Mohammad Mustafa Ahmedzai on Apr 7, 2010, 1:38:00 AM said... #

@Black Market

Glad it worked for you. First show me how it looks in your blog so that I could suggest further.

Vladimir on May 10, 2010, 8:39:00 PM said... #

Thanks, I resolved that I can modified the length by padding. It helps load page faster.

samsexy98 on Jun 26, 2010, 10:28:00 AM said... #

hi...
i have applied this tutorial on my blog..
but i want to change the images with your WINDOW STYLE MBT ICONS...
how to i do that....
u can check

here is my blog:
http://planet-hd.blogspot.com/

Hasan on Jul 3, 2010, 12:51:00 PM said... #

As-salamualikum Brother,
Thank you very much for the code. I was looking for it and because of you I have got it. Again thanks.

Mohammad Mustafa Ahmedzai on Jul 4, 2010, 12:31:00 AM said... #

@Samsexy

For that you will need to stripe a new image containing all your new icons. It will cost me a whole new post to explain it because then you will have to change all padding values!

@Hasan

W/Salam brother!
I am really happy it helped you out. :>

samsexy98 on Jul 14, 2010, 8:01:00 PM said... #

no worries..
will use this only...

Anonymous said... #

Hey Muhamed;

Thanks a lot for this lovely widget, I have managed to successfully modify it to work with Zen-Cart, it looks great.

Ahmed

maishee on Aug 16, 2010, 5:51:00 AM said... #

great post.llove it works great on my blog
thanks friend..

Black Sparrow on Aug 22, 2010, 2:16:00 AM said... #

Assalamu'alaykum...

sexy. Thanks, u're a good-man

office furniture on Oct 12, 2010, 3:04:00 PM said... #

thanks for the sharing article. i will tray to my blog.

internet marketing melbourne on Dec 15, 2010, 3:44:00 PM said... #

I Think of your talents as the things you’re really good at. They’re like personality traits. For instance, you may be a very creative person, or a person who’s really good at attending to details or a person with a gift for communicating. Your talents are the base for any successful business venture, including a home-based business.

website design hampshire on Dec 15, 2010, 5:06:00 PM said... #

Good ideas you have shared on css since long time i have been searching like that post. thank you for sharing.

Ayush Chand on Jan 26, 2011, 7:44:00 AM said... #

Hi Mohammed. Can you please give me the code of the social bookmarking widget you use! It really looks awesome!

Ayush Chand on Jan 26, 2011, 8:20:00 AM said... #

It worked man! Really awesome! What else should i say? Looks great on my blog! Check it out!!

Ayush Chand on Jan 26, 2011, 2:26:00 PM said... #

I liked to try the big ones, but they dont work. Can you help? I am using the small ones now (CSS 1).

Mohammad Mustafa Ahmedzai on Jan 28, 2011, 12:42:00 AM said... #

@Ayush

I am glad you liked it buddy. Dude I am afraid I will have to keep few things to MBT else I will loose my blog's uniqueness :P

And what problem are you actually facing with the big ones. You need to follow the same steps for it too.

Ayush Chand on Jan 28, 2011, 4:47:00 PM said... #

@mohammad. I can see the icons when i use the css 2

shehin on Jul 14, 2011, 5:59:00 PM said... #

hey mustafa,
Your posts are very useful.I want to use some nice social media icons instead of you icons for this social bookmarking widget.how can i do that.

Wasif Ali on Jul 29, 2011, 5:09:00 AM said... #
This comment has been removed by the author.
Wasif Ali on Jul 29, 2011, 5:16:00 AM said... #

Bro it's not happening on my blog, i don't know what's the problem, not just ur's, im unable to add any social bookmark buttons below my posts, and more thing bro, if you look at the homepage of my blog you will find a white gap between my two posts, it's kinda look wierd, can you tell me what to do to remove that white gaps, any help would be appreciated

www.thebloggingtutorial.blogspot.com

lovembabe on Sep 14, 2011, 7:49:00 AM said... #

Hi I'm having trouble with this CSS. I followed the steps and to my knowledge everything came out alright. The thing is that the icons do not appear, they are invisible. The letters are there, but the icons are not there. I used the second CSS code. Please help.
Thanks for all the insightful tricks, I really like your blog. ^^

ouchankosal on Oct 4, 2011, 2:15:00 PM said... #
This comment has been removed by the author.
ouchankosal on Oct 4, 2011, 2:20:00 PM said... #

Hi! I need ur help. why i didn't see icon? i do it all step but It's show only word Kindly Bookmark and Share it:.....plz go to my blog and see it how can i fix it http://thrill4us.blogspot.com/2011/10/honey-2-2011-dvdrip.html thx anyway i like ur blog :D

Austin Calib on Nov 4, 2011, 8:09:00 PM said... #

Great Blog with very good posts. Can you please tell me that how much time you take to create this wonderful blog, although I am new on internet but your work is very good and I appreciate your work.
Buy Twitter Followers

makayalaanstey on Nov 11, 2011, 12:28:00 AM said... #

nice post..n i like these bookmarks are more cool than the previous one's you wrote about..Forex Capital Markets

buy facebook fans on Nov 13, 2011, 12:43:00 AM said... #

Thank you, I have recently been searching for information about this topic and yours is the best I have discovered so far. buy facebook fans

selenagomez on Dec 14, 2011, 7:46:00 AM said... #
This comment has been removed by the author.
selenagomez on Dec 14, 2011, 7:48:00 AM said... #
This comment has been removed by the author.
sohail on Dec 24, 2011, 9:02:00 PM said... #

Thanks the author for it. I like to use this Gadget on my blog.

androidsoft on Jan 11, 2012, 4:29:00 PM said... #

http://officekey.blogspot.com

Michael McShinsky on Mar 5, 2012, 3:25:00 AM said... #

There wasn't anything for a black background that I could find, so I edited it. One is a .png for transparency and the second is a .jpg with a black background. I found the transparent one to fit my needs perfectly for any type of blog I worked on. Thanks!

http://1.bp.blogspot.com/-m2hsHcTpuaM/T1PrB5yvxrI/AAAAAAAAEq0/Svj5hiV0GEU/s1600/Share+It.png

http://1.bp.blogspot.com/-rU9KD2lvfIY/T1PrBdi6r3I/AAAAAAAAEqs/y4yFXpH6l0E/s1600/Share+It.jpg

nasir on Mar 21, 2012, 2:32:00 PM said... #

It was very interesting for me to read that blog. Thanks the author for it.I like such topics and everything that is connected to them.
I would like to read more soon.

Ali Febriyanto on Apr 1, 2012, 10:08:00 PM said... #

i have try it to my blog and it doesn't show up, if you not busy, hop you can help me to put the code above in to my blog, thanks

Pastor Joe on Apr 22, 2012, 12:47:00 PM said... #
This comment has been removed by the author.
Lauraine on Apr 26, 2012, 1:05:00 PM said... #

Thanks for sharing your info. I really appreciate your efforts and I will be waiting for your further write ups thanks once again.
youtube html5 player

Arvind Gulia on May 17, 2012, 4:09:00 PM said... #

Great post, you have pointed out some superb details, I will tell my friends that this is a very informative blog thanks.
Buy Facebook Fans

Gυנяαиωαℓα Fυи on Jul 15, 2012, 4:46:00 PM said... #

Nice Work Dear :)

ARAVIND BALAJI on Aug 31, 2012, 6:40:00 PM said... #

Very Nice widget i like it and i have implemented in my blog geeksware.blogspot.in

francis beth on Sep 13, 2012, 11:24:00 AM said... #

These articles and blogs are truly enough for me for a day.
Share It

Buy Facebook Likes on Oct 12, 2012, 8:11:00 PM said... #

Hi I'm having trouble with this CSS. I followed the steps and to my knowledge everything came out alright.
buy facebook likes

admin on Oct 16, 2012, 6:24:00 PM said... #

Thanks for the code. I will try to use this to add social widget at http://www.plusonefoundry.com

diya on Feb 24, 2013, 11:23:00 PM said... #

buy cheap twitter followers
To turn really interesting ideas and fledgling technologies into a company that can continue to innovate for years, it requires a lot of disciplines.
buy cheap twitter followers

Qayyum Mumtaz on Mar 29, 2013, 11:37:00 AM said... #

I have Four times ....:( what to do know?

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 |