Announcement:

BLOGGER HEROE IS UNDER CONSTRUCTION

How To Add Custom Add To Circles Widget To Blogger?

Deedbox we was using the Add to Circles Widget which was created by widgetsplus.com but now days we are noticing that the widget is not employed also their place mastered because of grade deliver.There is a widget by blogger but doesn't include your saliency ikon.Then what to do? How can we add a Add to Circles Widget which will hold a profile pic. along with add to band badge? Here I make a statement with this impost Add to Circles Widget.I fuck created a pattern Add to Circles Widget by using whatsoever sagittiform HTML and CSS properties and extra a add to circles badget by using the badge your users can directly simulate you on Google + through your blog.Now lets see how to add it to blogger ?


How To Add This Widget On Blogger


  • Now go to Page Layout
  • Click on Add a Gadget
  • Select HTML/JavaScript
  • Leave title field blank
  • Paste below code and save it
  • Drag the widget to bottom of your page.
  • Finally save your changes



<center><div style="border:1px solid #999;width:220px;font-family:sans-serif;color:#666;"><div style="background: #999;padding:2px;height:30px;font-size:16px;color:#fff;"><center style=" margin-top: 5px;">Add Me On Google +</center></div><center style="margin-top:5px;"><div style="font-weight:bold;padding:5px;">Adrian Lucernas</div><a href="https://profiles.google.com/106957260261276964704"><img src="https://fbcdn-sphotos-a.akamaihd.net/hphotos-ak-prn1/563475_425947064109405_164649991_n.jpg"alt="Adrian Lucernas on Google Plus" width="140" height="140" border="0" /></a><br /><br/><div style="font-size:80%;">God-fearing,Adventurous,Blog hopper.</div><br/><script type="text/javascript">window.___gcfg={lang: 'en'};(function(){var po=document.createElement("script");po.type="text/javascript";po.async=true;po.src="https://apis.google.com/js/plusone.js";var s=document.getElementsByTagName("script")[0];s.parentNode.insertBefore(po, s);})();</script><g:plus href="https://plus.google.com/106957260261276964704" rel="author" width="210" height="69"></g:plus></center></div></center>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" >
/*********************************************** 
* Scroll To Top Control script- © Dynamic Drive DHTML code library (www.dynamicdrive.com) 
* Modified by www.bloggers-hero.blogspot.com 
* This notice MUST stay intact for legal use 
* Visit Project Page at http://www.dynamicdrive.com for full source code 
***********************************************/
var scrolltotop={ 
    //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control 
    //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top). 
    setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
    controlHTML: '<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNqeJ6nDf1_QSwGgXJlHWlPQCDYe9QuYEaef1vXOuB9nU1XOAZOh9aK4NRN92Dj2bLbUu0ZNcmzFwpY9Q6DfBGMsJ99-KoK02GpQZ7UFWlrYXxGxFzg5yTZeqhqxw-QsLBJ719vI6ybOU/s1600/hb-arrow-up.png" />', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol" 
    controlattrs: {offsetx:5, offsety:5}, //offset of control relative to right/ bottom of window corner 
    anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
    state: {isvisible:false, shouldvisible:false},
    scrollup:function(){ 
        if (!this.cssfixedsupport) //if control is positioned using JavaScript 
            this.$control.css({opacity:0}) //hide control immediately after clicking it 
        var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto) 
        if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists 
            dest=jQuery('#'+dest).offset().top 
        else 
            dest=0 
        this.$body.animate({scrollTop: dest}, this.setting.scrollduration); 
    },
    keepfixed:function(){ 
        var $window=jQuery(window) 
        var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx 
        var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety 
        this.$control.css({left:controlx+'px', top:controly+'px'}) 
    },
    togglecontrol:function(){ 
        var scrolltop=jQuery(window).scrollTop() 
        if (!this.cssfixedsupport) 
            this.keepfixed() 
        this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false 
        if (this.state.shouldvisible && !this.state.isvisible){ 
            this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0]) 
            this.state.isvisible=true 
        } 
        else if (this.state.shouldvisible==false && this.state.isvisible){ 
            this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1]) 
            this.state.isvisible=false 
        } 
    }, 
    
    init:function(){ 
        jQuery(document).ready(function($){ 
            var mainobj=scrolltotop 
            var iebrws=document.all 
            mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode 
            mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body') 
            mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>') 
                .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'}) 
                .attr({title:'Scroll Back to Top'}) 
                .click(function(){mainobj.scrollup(); return false}) 
                .appendTo('body') 
            if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text 
                mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text 
            mainobj.togglecontrol() 
            $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){ 
                mainobj.scrollup() 
                return false 
            }) 
            $(window).bind('scroll resize', function(e){ 
                mainobj.togglecontrol() 
            }) 
        }) 
    } 
}
scrolltotop.init()
</script>



  • Now replace  Adrian Lucernas   with your name..
  • Replace  106957260261276964704   with your google + profile i.d.
  • Replace   https://fbcdn-sphotos-a.akamaihd.net/hphotos-ak-prn1/563475_425947064109405_164649991_n.jpg  with your profile image url.
  • Replace God-fearing,Adventurous,Blog hopper   with your short description.
Share it Please

0 comments:

Post a Comment

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. For perfect customization of our tutorials, use our HTML Editor
3. Please do not spam, Spam comments will be deleted immediately upon our review.

Regards,
Adrian Lucernas

Copyright @ 2013 BLOGGER HEROE. Designed by BloggerHeroe | Love for Blogger Heroe