Showing posts with label Widgets. Show all posts
Showing posts with label Widgets. Show all posts

Tuesday, September 16, 2014

Content Locker Widget cum Gadget For Blogger Websites



Most probably many of we bloggers prefer to get something in return when we have worked for something extremely hard. Atleast not for money but for atleast that more people can find our way hardwork.

For all those blogger here is a Content Locker Widget cum Gadget For Blogger Websites which helps you to lock the content until the user has not clicked on desired buttons.

With this the websites will get more customer reach than that of usual.

Follow the following steps to install this free widget instantly in your blog/website

Let's start.

1. Go to 'Template' and click 'Edit HTML'.


2. Make sure whether jQuery library is already included in your blog. If not, search for <head> and write down the following line just below <head>. 

<script src='http://code.jquery.com/jquery-1.10.2.min.js' type='text/javascript' />

3. Now search for </head> and paste the following code before </head>.


<link href='http://files-all-tech-corner.googlecode.com/svn/trunk/sociallocker.css' rel='stylesheet'/> <script src='http://files-all-tech-corner.googlecode.com/svn/trunk/sociallockermin.js' type='text/javascript'/>
<script type='text/javascript'>
 //<![CDATA[
jQuery(document).ready(function ($) { $('#default-usage .to-lock').sociallocker({ buttons: {order:["facebook-like","twitter-tweet","google-plus"]},
twitter: {url:"http://twitter.com/iammuji"},
facebook: {url:"https://www.facebook.com/bforblogger"},
google: {url:"https://plus.google.com/+Bforbloggerofficial"},
text: { header: "Like us To Unlock This Content",
message: "This content is locked. Like us on Twitter, Facebook or Google plus to unlock it." }, locker: {close: false, timer: 0,}, theme: "secrets" }); });
 //]]>
</script> 


Customization

Buttons There are seven buttons available for content locking. These are,

"facebook-like"
"facebook-share"
"google-plus"
"google-share"
"twitter-tweet"
"twitter-follow" and
"linkedin-share" 

You can apply any number of buttons for your site. You can even change the order of these buttons in the order:[] option (index 8 of the code). Separate each button by a comma (,).

Remember, for every button you inserted, you have to supply a URL link of your social media page. However for similar types of buttons like "facebook-like" and "facebook-share" or "google-plus" and "google-share", only one link has to be provided. For instance, my facebook page url is https://www.facebook.com/bforblogger which I will use for both "facebook-like" and "facebook-share" buttons.

Theme This specifies the visual aspect of your locker. There are five predefined locker themes available. You can select any of the following styles (Line 20 of the code).

secrets 


dandyish 


flat
 

glass


starter
However the style is "Starter" by default, i.e. you can even leave this field empty.

Additional Customization

Timer A countdown timer will be displayed if you choose any integer value. For instance, if you want to close your social locker after 300secs, you can insert timer: 300 in your code. A 0 value of timer indicates infinite time (Line 19 of the code).




Close Change your code from close: false to close: true in order to display a close icon at the corner of your locker (Line 19 of the code).




Now whenever you are interested to display social content locker in your blog post, wrap your code within this snippet of code.

<article id="default-usage">
 <div class="to-lock" style="display:none;">
 -- Hidden Content Starts --
 </div>
</article>

Credit

This awesome widget is created by Onepress-media for Wordpress blog.

I tried my best to keep things as uncomplicated as possible. If you still have any doubts hope you will use the comment box below.
Read More

Friday, August 22, 2014

Loading Gadget for blogger

Have you ever thought to have a Loading gadget whenever a page of your website is loading and instead of showing a blank page showing a Loading gadget? If your answer is yes then you are in right place 

Today i'm going to give you the code for Loading gadget which appears when any of your website page is loading and after the page loads completely it will slowly fade away.

It gives visitors a cool interaction and hence a good look for website. 


Lets put this into work. Go to your template and find the <body> tag and just below the body tag paste this piece of code.

<div id='loader'>
<div class="wrap">
<div class="bg">
<div class="loading">
<span class="title">loading...</span>
<span class="text"><data:blog.title/></span>
  </div> </div></div></div></b:if>
<script src='//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js'/>
    <script type='text/javascript'>
        $(window).load(function () {
            setTimeout(function () {
                $(&quot;.wrap&quot;).fadeOut(&quot;slow&quot;);
                setTimeout(function () {
                    $(&quot;#loader&quot;).fadeOut(&quot;slow&quot;)
                }, 1000)
            }, 1000)
        });
    </script>
<style>#loader{position:fixed;top:0;left:0;right:0;bottom:0;background:black;color:#eaf7ff;z-index:1000;font-family:sans-serif,arial}@-webkit-keyframes title{0%{opacity:0;right:130px}48%{opacity:0;right:130px}52%{opacity:1;right:30px}70%{opacity:1;right:30px}100%{opacity:0;right:30px}}@-moz-keyframes title{0%{opacity:0;right:130px}48%{opacity:0;right:130px}52%{opacity:1;right:30px}70%{opacity:1;right:30px}100%{opacity:0;right:30px}}@-webkit-keyframes fade{0%{opacity:1}100%{opacity:0}}@-moz-keyframes fade{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes bg{0%{background-color:#306f99}50%{background-color:#19470f}90%{background-color:#734a10}}@-moz-keyframes bg{0%{background-color:#306f99}50%{background-color:#19470f}90%{background-color:#734a10}}@-webkit-keyframes blink{0%{opacity:0}5%{opacity:1}10%{opacity:0}15%{opacity:1}20%{opacity:0}25%{opacity:1}30%{opacity:0}35%{opacity:1}40%{opacity:0;right:-21px}45%{opacity:1;right:80px}50%{opacity:0;right:-21px}51%{right:-21px}55%{opacity:1}60%{opacity:0}65%{opacity:1}70%{opacity:0}75%{opacity:1}80%{opacity:0}85%{opacity:1}90%{opacity:0;right:-21px}95%{opacity:1;right:80px}96%{right:-21px}100%{opacity:0;right:-21px}}@-moz-keyframes blink{0%{opacity:0}5%{opacity:1}10%{opacity:0}15%{opacity:1}20%{opacity:0}25%{opacity:1}30%{opacity:0}35%{opacity:1}40%{opacity:0;right:-21px}45%{opacity:1;right:80px}50%{opacity:0;right:-21px}51%{right:-21px}55%{opacity:1}60%{opacity:0}65%{opacity:1}70%{opacity:0}75%{opacity:1}80%{opacity:0}85%{opacity:1}90%{opacity:0;right:-21px}95%{opacity:1;right:80px}96%{right:-21px}100%{opacity:0;right:-21px}}.wrap{font-size:18px;font-weight:700;left:25%;letter-spacing:5px;margin-left:-80px;margin-top:-40px;position:absolute;top:50%;width:68%}.bg{padding:30px 30px 30px 0;-moz-animation:bg 1.5s linear infinite;animation:bg 1.5s linear infinite;-moz-box-shadow:inset 0 0 45px 30px black;-webkit-box-shadow:inset 0 0 45px 30px black;box-shadow:inset 0 0 45px 30px black}.loading{position:relative;text-align:right;text-shadow:0 0 6px#bce4ff;height:20px;width:150px;margin:0 auto}.loading span{display:block;text-transform:uppercase;position:absolute;right:30px;height:20px;width:400px;line-height:20px}.loading span:after{content:"";display:block;position:absolute;top:-2px;right:-21px;height:20px;width:16px;background:#eaf7ff;-moz-box-shadow:0 0 15px#bce4ff;-webkit-box-shadow:0 0 15px#bce4ff;box-shadow:0 0 15px#bce4ff;-moz-animation:blink 3.4s infinite;-webkit-animation:blink 3.4s infinite;animation:blink 3.4s infinite}.loading span.title{-moz-animation:title 3.4s linear infinite;-webkit-animation:title 3.4s linear infinite;animation:title 3.4s linear infinite}.loading span.text{-moz-animation:title 3.4s linear 1.7s infinite;-webkit-animation:title 3.4s linear 1.7s infinite;animation:title 3.4s linear 1.7s infinite;opacity:0}</style>
Now save the template and reload your website.

If you still have any queries regarding the gadget installation use the comment box below :) 
Read More

Wednesday, August 20, 2014

Add Numbered Page Navigation Widget For Blogger Blogspot

In blogger, by default, you see Older posts, and Newer Posts links near the bottom of the page which is useful to your blog visitors to navigate to other posts of your blog. But, the problem is so many people hardly notice those newer and older posts links, which absolutely means less page views to your blog.

So in order to increase to your blog page views you can use this cool looking, advanced numbered page navigation to your blog.

Standard page navigation on blog is “Newer Posts, Older Posts and Home ”. To create page navigation number like shown below your blog is very easy.

Step 1: Go to Your Blogger Dashboard --> Layout --> Add A Gadget --> Choose A Html/Javascript Gadget --> Copy Paste The Following Code

<style> .showpageNum a {
background: #02ab68;
padding: 5px;
padding-left: 10px;
border: 1px solid #b9b9b9;
padding-right: 10px;
margin-right: 5px;
color: #000;
font-weight: bold;
}
.showpage a {
background: #02ab68;
padding: 5px;
padding-left: 10px;
border: 1px solid #b9b9b9;
padding-right: 10px;
margin-right: 5px;
color: #000;
font-weight: bold;
}
.showpageArea {
float: left;
}
.feed-links {
display: none;
}
.showpageArea a {
float: left;
font-size: 15px;
color: #fff!important;
padding-left: 15px;
padding-right: 15px;
}
.showpagePoint {
float: left;
font-size: 15px;
padding-left: 15px;
padding-right: 15px;
}
.showpageArea a {
text-decoration: none;
}
.showpageArea {
float: left;
width: 363px;
margin-top: 10px;
}</style>
<!--Page Navigation Starts-->
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<script type='text/javascript'>
var pageCount=6;
var displayPageNum=6;
var upPageWord =&#39;Previous&#39;;
var downPageWord =&#39;Next&#39;;
</script>
<script src='http://widcraft.googlecode.com/svn/blogger_pagenavi_min.js' type='text/javascript'/>
</b:if>
</b:if>
<!--Page Navigation Ends -->

Also Read: How To Set Up A Custom Domain With Godaddy In Blogger - A Step By Step Procedure 

Step 2: Now save the code and visit back your website to see the widget in action. Still if you have any doubt feel free to use comment box right below.
Read More

Monday, August 18, 2014

Facebook Like Box & Subscription Pop Up Box For Blogger

Today i'm gonna show you an awesome article through which you can embed both Facebook like box and subscription box in single pop up window in just 5 steps.

Step 1: Go to your Blogger template and click on Edit template.

Step 2: Now find the word </body> by using Ctrl+F function

Step 3: Now just above the word </body> paste the following code


<!-- fb like box and subscription box in single pop up by bforblogger.com-->

<style type='text/css'>
#alltechcorner div.overlay {
background-color: #000;
}

#alltechcorner {
position:fixed !important;
position:absolute;
top:50px;
left:50%;
margin:0px 0px 0px -152px;
width:300px;
height:auto;
padding:16px;
background:#000;font:normal Dosis, Georgia, Serif;
color:#fff;
border:2px solid #333;
-webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.4);
-moz-box-shadow:0px 1px 2px rgba(0,0,0,0.4);
box-shadow: 2px 4px 9px #0082FF;
-webkit-border-radius:10px;
-moz-border-radius:10px;
border-radius:10px;
z-index: 999999;
}

#alltechcorner a.alltechcornerclose {
position:absolute;
top:-10px;
right:-10px;
background:#fff;
font:bold 16px Arial, Sans-Serif;
text-decoration:none;
line-height:22px;
width:22px;
text-align:center;
color:#000000;
border:2px solid #333;
-webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.4);
-moz-box-shadow:0px 1px 2px rgba(0,0,0,0.4);
box-shadow:0px 1px 2px rgba(0,0,0,0.4);
-webkit-border-radius:22px;
-moz-border-radius:22px;
border-radius:25px;
cursor:pointer;
z-index: 9999;
}
</style>
 <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
$(window).bind(&quot;load&quot;, function() {
// Animate Top
$(&#39;#alltechcorner&#39;).animate({top:&quot;50px&quot;}, 1000);
// Widget by www.alltechcorner.com
$(&#39;a.alltechcornerclose&#39;).click(function() {
$(this).parent().fadeOut();
return false;
});
});
</script>

<div id='alltechcorner'>
<div class='overlay' style='opacity: 0.8; height: 1000px; width: 1263px; position: fixed; left: 0px; top: 0px; z-index: -999999;'/>

<center>
<b>Join Us At Our Community</b></center>
<center>
<iframe allowtransparency='true' frameborder='0' scrolling='no' src='//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Falltechcorner&amp;width=300&amp;height=240&amp;show_faces=true&amp;colorscheme=dark&amp;stream=false&amp;show_border=false&amp;header=false&amp;appId=196282097100252' style='border:none; overflow:hidden; width:300px; height:258px;'/>

  <b>Subscribe for more awesome posts</b> <hr/>
<form action='http://feedburner.google.com/fb/a/mailverify' method='post' onsubmit='window.open(&apos;http://feedburner.google.com/fb/a/mailverify?uri=AllTechCorner&apos;, &apos;popupwindow&apos;, &apos;scrollbars=yes,width=550,height=520&apos;);return true' style='background: #00AAFF; border:1px solid #ccc;padding:3px;text-align:center; border-bottom-left-radius:5px; border-bottom-right-radius:5px;' target='popupwindow'><p>Enter your email address:</p><p><input name='email' style='width:140px' type='text'/></p><input name='uri' type='hidden' value='AllTechCorner'/><input name='loc' type='hidden' value='en_US'/><input type='submit' value='Subscribe'/></form>
  <span style='font-size:10px;'>Facebook like box and Subscription box in single pop up by <a href='http://www.alltechcorner.com'>AllTechCorner.com</a><br /><a href="http://www.alltechcorner.com/2014/05/fb-like-box-and-subscription-box-in-single-pop-up.html" target="_blank">Get this Widget</a></span>
</center>

<a class='alltechcornerclose' href='#'>&#215;</a>

</div>
<!-- fb like box and subscription box in single pop up by bforblogger.com -->

Step 4: Now in the above code replace alltechcorner and Alltechcorner with your facebook page username and feedburner ID name respectively.

Step 5: Now save the Template and boom just reload your website for the awesome widget.  
Read More

An Awesome Facebook Like Box For Your Blogger

An Awesome Facebook Like Box For Your Blogger
Facebook is a most prominent and well known social platform today. I am sure every blogger knows well how much it adds to your blog’s growth in different ways. You own a blog? Then you must have a Facebook like widget on your blog.

Earlier I have published a tutorial about adding a Single Pop Up Facebook Like Box and Subscription Box in Blogger.

In this post, I am going to share another unique Facebook Like Box with decent look. It is displayed in the right bottom of a blog/website. It prompts up and keeps its position constant even when you or any visitor scrolls down your blog’s page.

Go to Blogger Dashboard

· Go to Layout section
· Click on Add a Gadget
· Scroll down to HTML/JavaScript section
· Paste the following code in content area

<script type="text/javascript" src="https://files-all-tech-corner.googlecode.com/svn/trunk/fbslide.js"></script><script type="text/javascript">function r(f){/in/.test(document.readyState)?setTimeout('r('+f+')',9):f()}; r(function(){new ConversionsBox("Like%20Us%20on%20FB","https://facebook.com/alltechcorner");});</script>
Now replace alltechcorner with your facebook page username.

You are done. Now you can see this facebook like box in your website. 
Read More

Thursday, August 14, 2014

Cool Social Subscribe Widget for Blogger


Hi guys today im going to present you an awesome widgets for your blogs.

This widget has a facebook like button, twitter follow button and rss feed subscrber form which can easily let you find more genuine customers for your blog. You can add this widget at the bottom of any posts or the top of any page according yo your choice. The widget looks like image below.





Now let me show the installation.

Step 1: Go to your blog dashboard → Template → Edit HTML

Step 2: Now find the code <data:post.body/>

Step 3: Now just below the <data:post.body/> paste the following code

<section class="newsletter"> <h2>
Tired of checking for new posts ?
</h2>
<div id="form-newsletter">
<div class="social facebook">
<a href="https://www.facebook.com/AllTechCorner" target="_blank">
      <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8_BzmPqNZNfU_Dfoe44n81CiZBf3W0Ebf_zhFG-OLlJTFMF-t-sM-NA1G33IWVLYQWYTafn_gYmBkYi-s02DRBOmxBjKK1QjI7sy1h2iyxj4n8lxs6dvU_ynxZVSpSFblXgE4iloLJnLT/s1600/nl-facebook@2x.png" />
    </a>
    <iframe allowtransparency="true" class="social-box fb-like" frameborder="0" scrolling="no" src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2FAllTechCorner&amp;width=90&amp;height=21&amp;colorscheme=light&amp;layout=button_count&amp;action=like&amp;show_faces=false&amp;send=false&amp;appId=519648428126767&amp;locale=en_US" style="border: none; height: 21px; overflow: hidden; width: 90px;">
    </iframe>
  </div>
<div class="social twitter">
<a href="https://twitter.com/AllTechCorner" target="_blank">
      <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiqZ-virFPfIIyk-OcTtxEuGMq5_zbGs5Tt495lrxc8ELXkLYt6Lo7zcOarydkw7qz8_BOGjXxKMzVLKFgiHpEiZpHhn_CC2WoL4rSfcRQwFkY810v2fWZyv0DdV6pEonVr2XPFIKRUguuY/s1600/nl-twitter@2x.png" />
    </a>
    <iframe allowtransparency="true" class="social-box twitter-follow-button twitter-follow-button" data-twttr-rendered="true" frameborder="0" id="twitter-widget-0" scrolling="no" src="http://platform.twitter.com/widgets/follow_button.1399599786.html#_=1399785529920&amp;id=twitter-widget-0&amp;lang=en&amp;screen_name=AllTechCorner&amp;show_count=false&amp;show_screen_name=false&amp;size=m" style="height: 20px; width: 60px;" title="Twitter Follow Button">
    </iframe>
    <script>
      !function(d,s,id){
        var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?&#39;http&#39;:&#39;https&#39;;
        if(!d.getElementById(id)){
          js=d.createElement(s);
          js.id=id;
          js.src=p+&#39;://platform.twitter.com/widgets.js&#39;;fjs.parentNode.insertBefore(js,fjs);}}(document, &#39;script&#39;, &#39;twitter-wjs&#39;);
    </script>
  </div>
<div class="newsletter-form">
<fieldset>
<h2>
       Get all posts directly in your mail.
      </h2>
<div class="fields">
<form action="http://feedburner.google.com/fb/a/mailverify" method="post" onsubmit="window.openundefined'http://feedburner.google.com/fb/a/mailverify?uri=AllTechCorner', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" target="popupwindow">
<input class="email" id="email" name="email" onblur="ifundefinedthis.value=='')this.value=this.defaultValue;" onfocus="ifundefinedthis.value==this.defaultValue)this.value='';" type="text" value="Enter Your Email here.." />
          <input name="uri" type="hidden" value="AllTechCorner" />
          <input name="loc" type="hidden" value="en_US" />
          <input class="subscribe" name="commit" type="submit" value="Subscribe" />
        </form>
</div>
</fieldset>
</div>
</div>
</section>
<style>
.newsletter{text-align:center;margin:20px 0;}
.newsletter .social.facebook{background:none repeat scroll 0 0 #3661A0}
.newsletter .social{padding-top:20%;width:20%;float:left;position:relative}
.newsletter #form-newsletter{display:block;width:90%;max-width:900px;min-width:500px;margin:0 auto}
.newsletter:before,.newsletter:after{content:&quot; &quot;;display:table}
.newsletter:after{clear:both}
.newsletter h2{color:#3B434D;font-family:Open Sans,sans-serif;font-size:1.5em;font-weight:300;width:65%;margin:1em auto}
.newsletter .social.twitter{background:none repeat scroll 0 0 #00ACED}
.newsletter .social a{display:block;left:30%;position:absolute;top:20%;width:40%}
.newsletter .social a img{max-width:100%;width:100%;transition: transform 0.3s ease-out 0s}
.newsletter .social a:hover img{transform:scale(1.1)}
.newsletter .social .social-box{bottom:20px;left:50%;position:absolute}
.newsletter .social .social-box.fb-like{margin-left:-45px}
.newsletter .social .social-box.twitter-follow-button{margin-left:-30px}
.newsletter .newsletter-form{background:none repeat scroll 0 0 #1E293B;float:left;padding-top:20%;position:relative;width:60%}
.newsletter .newsletter-form fieldset{height:38px;left:10%;position:absolute;top:10%;width:80%;border:none}
.newsletter .newsletter-form fieldset h2{color:#FFF;font-family:Open Sans, sans-serif;font-weight:300;width:100%;margin:0 0 1.5625em;font-size:16px;}
.newsletter .newsletter-form fieldset .fields{position:relative}
.fields .email{border-radius:10px 0 0 10px;outline:0 none;width:84%;border:0;left:0;position:absolute;padding:10.5px}
.fields .subscribe{background:none repeat scroll 0 0 #F0553B;border:medium none;border-radius:0 10px 10px 0;color:#FFF;right:0;position:absolute;padding:11px;transition:all ease 0.6s;}
.fields .subscribe:hover {background: none repeat scroll 0 0 #161616;}
</style>
<script type="text/JavaScript">
fontsize = function () {
    var abtSubs = $(".newsletter #form-newsletter").width() * 0.025; // 10% of container width
    $(".newsletter .newsletter-form fieldset h2").css('font-size', abtSubs);
};
$(window).resize(fontsize);
$(document).ready(fontsize);
</script>
Note : There maybe more than one <data:post.body/> So make sure that you have selected the right one. If the widget does not appear try changing the location of code.

Step 5: Now replace the words in red color with desired words and save the template. That's it. You have got a wonderful Social Subscribe Widget for your Blogger.
Read More

Friday, June 6, 2014

How To Add a Custom Facebook Like Box to Your Site

Facebook Like Box is very useful widget to show visitors the authority and love of the people for his blog. Facebook offers a simple Like Box plugin that you can easily integrate into your website But the default Facebook like box is not having good look at ugly all. This tutorial will show you How To Add Cute Custom Facebook Like Box using CSS To Blogger. Facebook Like Box is the best way to get more fans on Facebook. A Fan Box allows great attract your Blog more visitors or readers to like your Facebook fan page not leaving the like go here. you don't need to do any think you only need to copy and paste the code. Im Sure that this Cool Customize Facebook Like Box With CSS widget attracts your facebook fans increase the count of Likes.

How To Add a Custom Facebook Like Box to Your Site

Now let's start adding it...

Step 1. Login to Your Blogger Account.Go to your Blogger Dashboard.Click on Layout tab from left pane and click on Add a Gadget link.

How To Add a Custom Facebook Like Box to Your Site

Step 2. After click on Add a Gadget link A pop-up box will open now
with many gadget list, Choose HTML/JavaScript from the gadget options by clicking the blue plus sign for that gadget. 


Step 3. Select 'HTML/Javascript' and add the one of code given below. 

Step 4. Now Click On Save 'HTML/JavaScript' You are done.

Step 5. Now copy and paste the below code carefully.

<div style="background: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhz-VEZtfJiHs80ST4TI8VUyO0VJV0AKQ7O7lAU2R8DnzxpiZIdysUK9cRt6kuX4bSjGwoFOKowQd8lKdrZfPgnWCqJisu-jB4a6I3WE6uyam7CW7JhtivmXcIwVer84SKigYGGp-wt-dTP/s1600/fan-01-pic.png');overflow:hidden;border-radius: 110px;.height:250px;width: 238px;border-radius: 0px 13px 0px 0px;overflow: hidden;"><div style="height: 250px; overflow: hidden;"><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tips and Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tips and Tricks" border="0" style="position: fixed; bottom: 10%; right: 0%; top: 0px;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Latest Tips For Bloggers"><img src="https://bitly.com/24workpng1" alt="Latest Tips For Bloggers" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tricks" border="0" style="position: fixed; bottom: 10%; left: 0%;" /></a><iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FAlltechcorner&amp;width=250&amp;height=258&amp;show_faces=true&amp;header=false&amp;stream=false&amp;show_border=false" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:250px; height:258px;" allowTransparency="true"></iframe> </div> </div>
Step 6: Now replace Alltechcorner with your facebook page's username (http://facebook.com/username)

Thats it.
Read More
© 2014 B for Blogger | Privacy Policy | Contact Us