Android Century
  • Home
  • Android Zone
    • Android Apps
    • Android Games
    • Apps APk Files
    • Games Apk Files
    • Apps Hack Tricks
  • Reviews
  • Fantasy Zone
    • Entertainment
    • Quotes and Status
    • Life Style
    • Home Made Tips
    • Hair Care
    • Skin Care
    • Fantasy Tips
  • Tricks
    • Free Recharge
    • Free Internet
    • shopping Cashback
    • Recharge Cashback
  • Tech
  • Mobiles
  • Gadgets
  • News
  • How To's
  • Software
Breaking
Loading...

Featured post

How to Take Great Photos With Apple's iPhone X

Recent Posts

Labels

  • Android Apk Files
  • Android Apps
  • Android Games
  • Apps Apk Files
  • Entertainment
  • Fantasy Tips
  • Gadgets
  • Hair Care
  • HomeMade Tips
  • How To's
  • News
  • Quotes
  • Quotes & Status
  • Recharge Cashback
  • Recharge Promo Codes
  • Shopping Cashback
  • Technology
  • skin care
Home / How To's / How to add Floating Social Media Bar Widget in your Blogger blog

How to add Floating Social Media Bar Widget in your Blogger blog

Latest Govt. Jobs 12:58:00 How To's Edit
Image result for Add Floating Social Media Bar Widget for Bloggers and WebsitesFloating sharing Bar is quite popular among Bloggers who always tries to make blog socially available to everyone, and sharing is one of best method by which readers can easily share with their friends. This not only help the readers but also the blogger who’s blog been shared among hundreds of people. This in turn bring readers directly to their blog. This can be done using floating Shareable widget which we will discuss here. 

  Floating Bar not only helps you to increase your blogs social availability but also it increases the chances of sharing your post by readers with their friends since its floats just side by side to your blog post

  The biggest problem while implement this Floating bar is that it cannot be customized according to blogger need only if blogger is itself a good HTML programmer. But the widget I will be discussing here is much simpler in coding and as well as much simple to implement. The widget is also can be easily customized.
This tutorials is divided into two parts A and B.

In Part A:  we will create our Widget using Shareaholic website which is Free of cost and
In Part B: We will implement this code into our Blogger Template

So let’s Get Started

Note:  If you have already created apps using Shareaholic you can skip to Part B

Part A: Creating Shareaholic Sharing App

1: Firstly register with your account in Shareaholic Website. Sign up there. Now login with credentials and click on “For you Site”

2: Now click on ‘Get Started’. It will Ask you to Add Your Website, just fill the information required and save it. Now after adding your website it will provided you with an analyze code that you to place before </head&gt in your Blogger Template. Save this Code we will integrate this Code in Part B process.


3: Now all you have to do is to create sharing App that we will use to integrate into our Blogger.

4: Now Customized the Widget According to your need I personally recommend to follows this Settings. It’s important you should select ‘No Headings’.
Image result for Add Floating Social Media Bar Widget for Bloggers and Websites

5: Now save your settings and get your code of it. It may appear like this 

<div class="shareaholic-canvas" data-app-id="some number" data-app="share_buttons">
</div>
Since we have created ours Widgets now we have to integrate this code in our Blogger template

Part B: Integrating Code

1: Now go to your Blog>> Template >> Edit HTML (you may backup your template First)

2: And Search for </head>  paste that Analyze Code Just BEFORE it.


3: Now search for following code using CTRL+F
<b:includable id='post' var='post'>

4: Now copy and paste the Following Code just AFTER it 
<!--Floating bar Eutectics Starts Here-->
<b:if cond="data:blog.pageType == &quot;item&quot;">

<style> 
.Eu_social_floating{ 
    position:fixed; top:25%;
    margin-left:-90px;float:left;
    width:70px; 
    background-color:#ffffff;
     padding: 5px 0 0px 0px; 
     border-top:0px solid #ddd; 
border-left:0px solid #ddd;
border-right:0px solid #ddd;   
border-bottom:0px solid #ddd; 
z-index:9999px !important; 
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px; 
} 
</style> 
<div class="Eu_social_floating">
You’re Sharing app Code 
</div>
</b:if>
<!--Floating bar Eutectics Ends Here-->

5: Now paste your sharing apps Code in place ‘Your Shareaholic Code’ 

Simply save it, you are done Congrats!

See your post page it will starts appearing already.

Important Notes for Geeks like You: 
1: To Change Your Widget Background Color
Background-color:#ffffff

2: To Give border to your widget
border-top:0px solid #ddd;
border-left:0px solid #ddd;
border-right:0px solid #ddd;  
border-bottom:0px solid #ddd;
By default color border color is #ddd and its width is 0px i.e no border

3: To Change your Widget width
width : 70px

4: To Change its position horizontally according to your post content
margin-left:-90px;
If you decrease its value from -90px to -100px it will move more towards LEFT and similarly
If you increase its value from -90px to -80px it will move more towards RIGHT.

5: To change its Position Vertically change the Value of following
top:25%;

Also you can change setting from Shareaholic Page to change its appearance. Like in this examples
Image result for Add Floating Social Media Bar Widget for Bloggers and Websites

Another approach towards the same result :
In this method we would make the scrolling Social bar interactive with some JavaScript. Here in this case, the Social bar will follow the readers till the end of page. The social bar will got fixed only when readers scroll just below post title and remain fixed till the end. Add the CSS just above ]]></b:skin>
.Eu_social_floating{ 
    position:absolute;
    margin-left:-90px;float:left;
    width:70px; 
    background-color:#ffffff;
     padding: 5px 0 0px 0px; 
     border-top:0px solid #ddd; 
border-left:0px solid #ddd;
border-right:0px solid #ddd;   
border-bottom:0px solid #ddd; 
z-index:9999px !important; 
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px; 
}
.sticky {
  position: fixed!important;
  z-index: 100;
  margin-top: 10px;
  top: 0;
}
also add this following code just above </head>.
<script type='text/javascript'> $(document).ready(function() { var stickyNavTop = $(&#39;.Eu_social_floating&#39;).offset().top; var stickyNav = function(){ var scrollTop = $(window).scrollTop(); if(scrollTop &gt; stickyNavTop){$(&#39;.Eu_social_floating&#39;).addClass(&#39;sticky&#39;);}else{$(&#39;.Eu_social_floating&#39;).removeClass(&#39;sticky&#39;);}}; stickyNav(); $(window).scroll(function() { stickyNav(); }); });</script>
You may wonder how this widget works, the answer is quite simple. Basically the widget we have created is design to appear/Render within the post body, say like below the post. But to make Render like Floating Bar I have created this small Code that Float like Fixed Widget into the Blogger template so as to allow the Shareaholic Share Code to render within it. Cool Huh!

If you face any problem regarding this tutorial feel free to drop your comment below
Share on Facebook Share on Twitter Share on Google Plus

RELATED POSTS


How to Get Free Internet on Idea An...

How to Use DroidVPN App For Free In...

How to HACK Google Play Music App
How to add Floating Social Media Bar Widget in your Blogger blog How to add Floating Social Media Bar Widget in your Blogger blog Reviewed by Latest Govt. Jobs on 12:58:00 Rating: 5

0 comments:

Post a Comment

Newer Post Older Post Home
Subscribe to: Post Comments ( Atom )

Search This Blog

TEST BOOK FOR GOVT ENTRANCE TEST

TEST BOOK FOR GOVT ENTRANCE TEST
Find All Latest book for preparation of SSC,RAILWAYBANK PO,RBI,BANK CLERK,GATE ME,GATE CE are available here in less prices, to check out the books click here

Translate

  • Popular Post
  • Random posts
  • Category

Popular Posts

  • Teen Patti Offer 2018: Refer and Earn Flipkart Vouchers Free
    Teen Patti Offer 2018: Refer and Earn Flipkart Vouchers Free
    Teen Patti Refer & Earn Offer:  Hey Guys! Today I make an article about Teen Patti Referral ...
  • Taotronics TT-BH22 Headphones Review
    We make it a addiction to now not look up pricing of a product sooner than reviewing and if ...
  • Reliance Jio to offer sharp tariff discounts for customers signing up by March-end
    Reliance Industries' Jio unit will charge a tariff for its services from April, but will offer ...
  • Pentagon strongly condemns North Korea missile test
    The Pentagon on Monday strongly condemned North Korea’s latest missile test, adding that the ...
  • Fitbit Zip 2017 review
    Fitbit PROS: Clever, accurate tracking Expandable online service Integration with 3rd ...
  • Bank wallets growing faster than e-wallets
    In the  bank  versus  e-wallets  sweepstakes,  lenders  have now gained lost ground. As of ...

Random Posts

  • Hotspot Shield Free Download of the day
    Hotspot Shield Free Download of the day
    25.03.2017 - 0 Comments
    Hotspot Shield Free If you’ve ever idly looked at a shed online only to spend the next decade…
  • To type in Hindi on Android phone, use official Google app
    To type in Hindi on Android phone, use official Google app
    14.02.2017 - 0 Comments
    Hindi typing is not new to Android phones. For over three years now, there is…
  • How to Back Up and Restore Your Android Phone with TWRP
    How to Back Up and Restore Your Android Phone with TWRP
    30.01.2018 - 0 Comments
    When you’re rooting, flashing custom ROMs, and otherwise playing with Android’s system, there are a lot…
  • HTC 10 vs Nexus 6P: Which is better?
    HTC 10 vs Nexus 6P: Which is better?
    24.06.2016 - 0 Comments
    HTC 10 vs Nexus 6P: HTC’s newest and greatest offering goes up against the best Nexus device yet,…
  • UE Roll 2 review
    UE Roll 2 review
    10.04.2017 - 0 Comments
    Ultimate Ears VERDICT The UE Roll 2 is a surprising Bluetooth speaker. It boasts a 50-foot wireless…

Labels

Android Apk Files Android Apps Android Games Apps Apk Files Apps Hack Tricks Entertainment Free Internet Freecharge Gadgets Games Apk Files How To's Laptops Guide Mobiles Reviews Technology Viral's android zone free recharge

Entertainment

Tricks

Popular Posts

  • Teen Patti Offer 2018: Refer and Earn Flipkart Vouchers Free
    Teen Patti Offer 2018: Refer and Earn Flipkart Vouchers Free
    Teen Patti Refer & ...
  • Taotronics TT-BH22 Headphones Review
    We make it a ...
  • Hands-on with the home windows 10 Creators update for the Xbox One: Beam recreation streaming arrives
    The Windows ...
  • Pentagon strongly condemns North Korea missile test
    The Pentagon on ...
  • Reliance Jio to offer sharp tariff discounts for customers signing up by March-end
    Reliance Industries' Jio unit will charge a tariff for its services from April, but will offer ...
  • Fitbit Zip 2017 review
    Fitbit PROS ...
  • Bank wallets growing faster than e-wallets
    In the  bank ...

Random Posts

  • GelTouch adds a brand new dimension to touch-touchy controls
    GelTouch adds a brand new dimension to touch-touchy controls
    24.03.2017 - 0 Comments
    The problem with a lot of touch-sensitive controls is that the communication is one-way: They can feel…
  • Good news YouTube launches low-bandwidth version for India
    Good news YouTube launches low-bandwidth version for India
    06.04.2017 - 0 Comments
    Google rolled out Wednesday a version of its YouTube video sharing app that is targeted at users who do…
  • HMD Global will show off the Nokia 6 and some new handsets at the MWC
    HMD Global will show off the Nokia 6 and some new handsets at the MWC
    15.02.2017 - 0 Comments
    HMD Global has taken up the reins from Nokia and is directly responsible for the…
  • VR Once Again Will Bring Thick and Heavy Laptops in the Market
    VR Once Again Will Bring Thick and Heavy Laptops in the Market
    14.02.2017 - 0 Comments
    Although the PC sales in recent years has been declining, but the notebook is in the past few years has…
  • AudioTechnica ATH-WS550iS Solid Bass headphones review: Perfect for bass lovers
    AudioTechnica ATH-WS550iS Solid Bass headphones review: Perfect for bass lovers
    03.05.2016 - 0 Comments
    EXPERT'S RATING(4.5) READERS RATING TOP FEATURES *Looks amazing*Bass heavy*Inline…

Most Popular

  • Teen Patti Offer 2018: Refer and Earn Flipkart Vouchers Free
    Teen Patti Offer 2018: Refer and Earn Flipkart Vouchers Free
    Teen Patti Refer & ...
  • SAMSUNG GALAXY J7 (2016) REVIEWS
    SAMSUNG GALAXY J7 (2016) REVIEWS
    SAMSUNG GALAXY J ...
  • Top 5 Best SmartPhones under 7000 Rs (March 2017)
    Looking for the ...
  • Apple, IBM, Cisco are huge because of Indians, do not deny them H-1B visa: RBI Governor Urjit Patel
    ...
  • SAMSUNG GALAXY J7 (2016) Specifications
    SAMSUNG GALAXY J ...
  • BlackBerry Teases Marshmallow Beta Testing for Priv by Next Week
    Blackberry ...
  • LG Q6 Review
    LG Q6 Review
    2017 is ...

Contact Form

Name

Email *

Message *

Offers Zone

Created By Android Century Distributed by Android Century
  • Home
  • About us
  • Contact us
  • Privacy policy
  • Terms of use
  • Advertise here
Subscribe Via Email Subscribe To Android Century By Email And Get Free Updates. ;-)


Your email address is safe with us!