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

Add Falling Snow Flakes Effect Widget in Blogger Background

Preview
Add Falling Snow Flakes Effect Widget in Blogger Background
Live Demo



How to display Snow Falling Flakes on Blogger Background ?

1. Goto blogger > Choose your Blog > Layout > Add a Gadget

2. Select HTML/JavaScript and Paste the given below code, and save.

CODE:
<script type="text/javascript">   //Configure below to change URL path to the snow image   var snowsrc="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQSV6tx0zLYYHHX4V2q7luTmEgrUvfZX18RFRIx4jnIrOPof-ByxFATubO8VD7V-Y2DVhEHjLoFZwDsYXzyDpU_-XK4B-EjmKcqwTGv-6YasurJZLF_nZxkBVQM_7ZrP0NgrCYa-hU6Zc/s400/snow.gif"   // Configure below to change number of snow to render   var no = 30  // Configure whether snow should disappear after x seconds (0=never):   var hidesnowtime = 0;   // Configure how much snow should drop down before fading ("windowheight" or "pageheight")   var snowdistance = "pageheight"; ///////////Stop Config//////////////////////////////////   var ie4up = (document.all) ? 1 : 0;   var ns6up = (document.getElementById&&!document.all) ? 1 : 0;     function iecompattest(){     return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body     }   var dx, xp, yp;    // coordinate and position variables   var am, stx, sty;  // amplitude and step variables   var i, doc_width = 800, doc_height = 600;   if (ns6up) {     doc_width = self.innerWidth;     doc_height = self.innerHeight;   } else if (ie4up) {     doc_width = iecompattest().clientWidth;     doc_height = iecompattest().clientHeight;   }   dx = new Array();   xp = new Array();   yp = new Array();   am = new Array();   stx = new Array();   sty = new Array();   snowsrc=(snowsrc.indexOf("dynamicdrive.com")!=-1)? "http://2.bp.blogspot.com/-MsCdyoGtGdA/UX5gk72qNoI/AAAAAAAAAfQ/LaKTmUG-aJM/s1600/snow+falling+effect.gif" : snowsrc   for (i = 0; i < no; ++ i) {      dx[i] = 0;                        // set coordinate variables     xp[i] = Math.random()*(doc_width-50);  // set position variables     yp[i] = Math.random()*doc_height;     am[i] = Math.random()*20;         // set amplitude variables     stx[i] = 0.02 + Math.random()/10; // set step variables     sty[i] = 0.7 + Math.random();     // set step variables         if (ie4up||ns6up) {       if (i == 0) {         document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><a href=\"http://dynamicdrive.com\"><img src='"+snowsrc+"' border=\"0\"><\/a><\/div>");       } else {         document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><img src='"+snowsrc+"' border=\"0\"><\/div>");       }     }   }   function snowIE_NS6() {  // IE and NS6 main animation function     doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10;         doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")?  iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight;     for (i = 0; i < no; ++ i) {  // iterate for every dot       yp[i] += sty[i];       if (yp[i] > doc_height-50) {         xp[i] = Math.random()*(doc_width-am[i]-30);         yp[i] = 0;         stx[i] = 0.02 + Math.random()/10;         sty[i] = 0.7 + Math.random();       }       dx[i] += stx[i];       document.getElementById("dot"+i).style.top=yp[i]+"px";       document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px";      }     snowtimer=setTimeout("snowIE_NS6()", 10);   }     function hidesnow(){         if (window.snowtimer) clearTimeout(snowtimer)         for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden"     } if (ie4up||ns6up){     snowIE_NS6();         if (hidesnowtime>0)         setTimeout("hidesnow()", hidesnowtime*1000)         } </script>
Customize:

You can change the number of falling snow flakes by replacing "var no = 30;" in the given above code, 30 is highlighted in the code.

Change 30 to 40 flakes, 40 to 50 flakes etc.

OR

Use this button to add this widget to blogger.






Simple Email Subscription Box Widget for Blogger

Preview
Simple Email Subscription Box Widget for Blogger

How to add this widget to blogger ?

1. Goto your blog > Layout > Add a Gadget

2. Choose HTML/JavaScript and paste the given below code after customization.

CODE:
<style>.rb-email{background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4xFla7PF4LzvOAhSLmu6hwCqlFCO590vb0ZjoeG1xqk17Dhju5aFSrc9-rNdJbt3apOHdJvyzYWoKCWHyxf_CVyn49YmqyLsSAKPW-wEwaHZYuLsd6efTl-FOYIYfTPtwGS212ryerQEH/s1600/email.png) no-repeat 0px 12px ;width:300px;padding:10px 0 0 55px;float:left;font-size:1.4em;font-weight:bold;margin:0 0 10px 0;color:#686B6C;}
.rb-emailsubmit{background:#9B9895;cursor:pointer;color:#fff;border:none;padding:3px;text-shadow:0 -1px 1px rgba(0,0,0,0.25);-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;font:12px sans-serif;}.rb-emailsubmit:hover{background:#E98313;}.textarea{padding:2px;margin:6px 2px 6px 2px;background:#f9f9f9;border:1px solid #ccc;resize:none;box-shadow:inset 1px 1px 1px rgba(0,0,0,0.1);-moz-box-shadow:inset 1px 1px 1px rgba(0,0,0,0.1);-webkit-box-shadow:inset 1px 1px 1px rgba(0,0,0,0.1); font-size:13px;width:170px;color:#666;}
</style>
<div class="rb-email">Subscribe via Email<form action="http://feedburner.google.com/fb/a/mailverify" id="feedform" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=knowledge333', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><input gtbfieldid="3" class="textarea" name="email" onblur="if (this.value == &quot;&quot;) {this.value = &quot;Enter email address here...&quot;;}" onfocus="if (this.value == &quot;Enter email address here...&quot;) {this.value = &quot;&quot;;}" value="Enter email address here..." type="text" /><input type="hidden" value="Knowledge333" name="uri"/><input type="hidden" name="loc" value="en_US"/><input class="rb-emailsubmit" value="Submit" type="submit" /></form></div>

Customize:

1. Replace "knowledge333" with your feed burner username.

2. You can change the heading "subscribe via Email" with your text.




Popup Window widget with Close Button in Blogger

Preview:
Popup Window widget with Close Button in Blogger
This is Popup window widget for blogger.
DEMO
Copy and paste this widget to your blogger.

Goto Layout > Add a Gadget > HTML/JavaScript

CODE:
<style>#topbar {height:30px;width:auto;background: #005094 url('http://lh3.ggpht.com/_beEpWOXwLJE/TIb57Lu4fwI/AAAAAAAABE0/q7niFVRbyNE/top-toolbar.jpg');background-repeat:repeat-x;text-align:left;padding-top:4px;}#adsground {height:auto;margin:0 auto;width: 336px;background:#fff;border-bottom:2px #005094 solid;border-right:2px #005094 solid;border-left:2px #005094 solid;text-align:Center;padding:4px;}
#headlineatas {opacity:1.0;height:auto;width:auto;position:fixed;top:180px;left:600px;border-bottom:1px #005094 solid;border-bottom:0px blue solid;color:#333;padding:0px;z-index:1001;font-size:13px;}</style><script type="text/javascript">function getValue(){document.getElementById("headlineatas").style.display = 'none';}</script><div id="headlineatas">
<div id="topbar">
<img align="left" style="padding-left:2px;" src="http://icons.iconarchive.com/icons/deleket/folder/24/Mozilla-Thunderbird-icon.png" /><span style="color:#fff;font-size:13px;font-weight:bold;text-shadow:black 0.1em 0.1em 0.1em">Popup Window title here</span><span style="color:#fff;font-size:13px;font-weight:bold;text-shadow:black 0.1em 0.1em 0.1em;float:right;padding-top:3px;padding-right:10px"> <target="_blank" onclick="getValue()"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQfcdh4P3K2Yu8gmx_OeoLTQxLyDoT2FKQMLKWm_KYPpyiiBr7gCdV2RDOsx4T1GVR9sxY5s71y31s8ncLvlV5VwjT-D7FJiH7-LfScgw6lbVWLo_W6O323-I8TWvJJVjwZ64_RAeKVUtm/s1600/close.png" /></target="_blank"></span></div>
<div id="adsground">
<h3>
<a href="http://knowledge333.blogspot.com/2013/12/online-popup-window-with-close-button.html">Get This Pop-up Window </a></h3>
<p align="left">
<h3>
</h3>
</p>
Put Your Text OR HTML CODE here to display in popup window<p>
<br/></p>
</div>
</div>
How to Customize this widget ?
1. Replace : "Popup Widnow title here" with your title.
2. Replace: "Put Your Text OR HTML CODE here to display in popup window" with your Text or HTML code, which will show in your popup window.




Place Meta Tag widget/gadget in blogger template for Better SEO

Place Meta Tag widget/gadget in blogget template Better SEO

Goto > Blogger > Template > Edit HTML

Find <head> using "CTRL+F" search box.

Copy and paste below this meta tag code into your blogger <head> tag after customizing.

Meta Tag:
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta name="Description" content="your blog search description here" />
</b:if>
<meta name="Keywords" content="write your keywords here" />
<meta name="Author" content="write author name here" />
<meta name="Robots" content="All" />
Customize:
Replace all highlighted text with your text.




Floating Social Bookmarking Share post widget on left in Blogger

Preview:
Smooth Floating Social Bookmarking Share post widget on left or right in Blogger



1. Goto Layout > Add a Gadget > HTML/JavaScript.

2. Copy and Paste the given below code in HTML/JaveScript.

CODE:
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript" src="http://s.sharethis.com/loader.js"></script><script type="text/javascript">stLight.options({publisher: "c59a9fe4-e43f-4718-8b34-306fe893d5ba", doNotHash: true, doNotCopy: false, hashAddressBar: false});</script>
<script>
var options={ "publisher": "c59a9fe4-e43f-4718-8b34-306fe893d5ba", "position": "left", "ad": { "visible": false, "openDelay": 5, "closeDelay": 0}, "chicklets": { "items": ["facebook", "twitter", "googleplus", "buffer", "linkedin", "pinterest", "email", "sharethis"]}};
var st_hover_widget = new sharethis.widgets.hoverbuttons(options);
</script>
Customize:
Your can place this share tool button on left or right side of your site page or blogger by changing left or right the highlighted code.




Next/Previous Page Navigation Button For Blogger

Customize Blogger Older post, Newer post widget to Next and Previous page button with numbers.

Next/Previous Page Navigation Button For Blogger instead of older post and newer post

Screenshot
Next/Previous Page Navigation Button For Blogger instead of older post and newer post

Goto your blogger blog >> Layout >> Add a Gadget >> HTML/JavaScript

Copy and Paste this code in blogger html/javascript gadget and save.

CODE:
<style type="text/css">#blog-pager{font-size:normal}.showpageArea{font-family:verdana,arial,helvetica;color:#000;font-size:11px;margin:10px}.showpageArea a{color:#000;text-shadow:0 1px 2px #fff;font-weight:700}.showpageNum a{padding:3px 8px;margin:0 4px;text-decoration:none;border:1px solid #999;-webkit-border-radius:3px;-moz-border-radius:3px;background:#ddd url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfY-zTlzJHAGDSzb7aWzF4p_tgyu_GsmR7Xro_-FKlYw4Sqm-mKJGTU-kUdqF-jCNJ99x_ZOgKqrF8JK39KaVRe4avqSVvaMsnzPEtGazZ7j4amZ5Ee4jKIUKADFAc5LdyGn1GEDi_ntU/s1600/wp1.jpg) 0 -50px repeat-x}.showpageNum a:hover{border:1px solid #888;background:#ccc url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfY-zTlzJHAGDSzb7aWzF4p_tgyu_GsmR7Xro_-FKlYw4Sqm-mKJGTU-kUdqF-jCNJ99x_ZOgKqrF8JK39KaVRe4avqSVvaMsnzPEtGazZ7j4amZ5Ee4jKIUKADFAc5LdyGn1GEDi_ntU/s1600/wp1.jpg) 0 -25px repeat-x}.showpageOf{margin:0 4px 0 0}.showpagePoint{color:#fff;text-shadow:0 1px 2px #333;padding:3px 8px;margin:2px;font-weight:700;-webkit-border-radius:3px;-moz-border-radius:3px;border:1px solid #999;background:#666 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfY-zTlzJHAGDSzb7aWzF4p_tgyu_GsmR7Xro_-FKlYw4Sqm-mKJGTU-kUdqF-jCNJ99x_ZOgKqrF8JK39KaVRe4avqSVvaMsnzPEtGazZ7j4amZ5Ee4jKIUKADFAc5LdyGn1GEDi_ntU/s1600/wp1.jpg) 0 0 repeat-x;text-decoration:none} </style> <a href="http://24work.blogspot.com/" 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/" target="_blank" title="Latest Tips And Tricks"><img src="https://bitly.com/24workpng1" alt="Latest Tips And Tricks" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a><a href="http://24work.blogspot.com/" target="_blank" title="Blogger Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tricks" border="0" style="position: fixed; bottom: 10%; left: 0%;" /></a><script style='text/javascript'>
var postperpage=8;
var numshowpage=2;
var upPageWord="Previous";
var downPageWord="Next";
var home_page="/";
var urlactivepage=location.href;
</script>
<script style='text/javascript' src='http://safir85.ucoz.com/24work-blogspot/page-navigation/0-test-p-n-01_00.js'></script>



How to place custom Four Columns Footer widget/gadget with CSS Hover in Blogger

For installation of Custom Four Column widget we have to modify or add some codes in Blogger Template so you must backup your blogger template then start work.


How to add custom Four Columns Footer widget/gadget with CSS Hover in blogger

1. Go to Blogger Dashboard >> Tempalte >> Edit HTML >>

2. Find ]]></b:skin> by using 'CTRL+F' Search box

3. Paste this code just above the ]]></b:skin> tag

CSS CODE:

/* --- Starts @ Razlogs--- */
/* --- CSS by: M Ehsan--- */
#lower {
border-top:10px solid #F781F3;
margin:0 0 10px 0;
-moz-border-radius-bottomleft:10px;
-moz-border-radius-bottomright:10px;
}

#lower-wrapper {
margin:auto;
padding: 0px 0px 20px 0px;
width: 960px;
background: #FBEFF5;
-moz-border-radius-bottomleft:10px;
-moz-border-radius-bottomright:10px;
-webkit-border-bottom-left-radius:10px;
-webkit-border-bottom-right-radius:10px;
}

#lowerbar-wrapper {
float: left;
margin: 0px 0px 0px 0px;
padding: 10px 0px 0px 0px;
width: 25%;
text-align: justify;
font-size:100%;
color:#333;
line-height: 1.6em;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}

.lowerbar {
margin: 0;
padding: 0;
}

.lowerbar .widget {
margin: 0;
padding: 10px 20px 0px 20px;
}

.lowerbar h2 {
background:#F781F3;
-moz-border-radius-bottomleft:6px;
-moz-border-radius-bottomright:6px;
-webkit-border-bottom-left-radius:6px;
-webkit-border-bottom-right-radius:6px;
margin: -10px 0px 10px 0px;
padding: 3px 0px 3px 0px;
text-align: center;
color:#fff;
font-size:16px;
font-weight:bold;
text-transform:lowercase;
}

.lowerbar ul {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
list-style-type: none;
}

.lowerbar li {
margin: 0px 0px 2px 0px;
padding: 0px 0px 1px 0px;
border-bottom:1px dotted #<span style="color: #ff0000;">DF0101</span>;
}

.lowerbar a {
color: #<span style="color: #ff0000;">FA58F4</span>;
text-decoration: none;
}

.lowerbar a:hover {
text-decoration: underline;
color: #<span style="color: #ff0000;">F7BE81</span>;
}

.lowerbar a:visited {
text-decoration: none;
color: #<span style="color: #ff0000;">5858FA</span>;
}
/* --- CSS by: M Ehsan tipstricksisland.com--- */
/* --- End @ Razlogs--- */

4. Now find <div id=’footer-wrapper’> and paste the below HTML code Before <div id=’footer-wrapper’>

CODE:
<div id='lower'><div id='lower-wrapper'><div id='lowerbar-wrapper'><b:section class='lowerbar' id='lowerbar1' preferred='yes'></b:section></div><div id='lowerbar-wrapper'><b:section class='lowerbar' id='lowerbar2' preferred='yes'></b:section></div><div id='lowerbar-wrapper'><b:section class='lowerbar' id='lowerbar3' preferred='yes'></b:section></div><div id='lowerbar-wrapper'><b:section class='lowerbar' id='lowerbar4' preferred='yes'></b:section></div><div style='clear: both;'/></div></div>




How To Install/Add The Favicon widget To Blogger Blog

How To Install/Add/insert The Favicon widget To Blogger Blog

Here are the complete and easy methods to install the favicon to your blogger blog. You can add favicon to your blog with two ways, like going to blogger html section >> then editing the blogger theme to add the favicon, but here i am going to share with you both ways to install the favicon icon to your blogger blog.



FIRST METHOD

Follow Simple Steps to add Favicon to your blogger blogs.

1. Goto your blogger blog > Layout > Edit (Favicon) as shown in the given below snapshot.


How To Install/Add/insert The Favicon widget To Blogger Blog

2. Use a square image that's less than 100 KB.

Favicon sized should be square in pixel like 16x16 or 32x32 or Greater.

3. Choose your file > Upload > Save.


How To Install/Add/insert The Favicon widget To Blogger Blog

4. It will take some time to show on your blogger blog, minimum 12 to 24 hours.

SECOND METHOD

1. Goto > Template > Edit HTML > Search for "favicon" Using Search box "CTRL+F"

Snapshot: (Click on the picture to see FULL SIZE)
How To Install/Add/insert The Favicon widget To Blogger Blog using Edit HTML Template

Find code like this.
<img expr:src='data:comment.favicon' height='16px' style='margin-bottom:-2px;' width='16px'/>
Customize this code:

1. Replace "data:comment.favicon" with your favicon image URL.

Use a square image that's less than 100 KB.


Favicon sized should be square in pixel like 16x16 or 32x32 or Greater.

2. Remove "expr:" which is given before your image URL.

In the end the code will look like this,

Example code:
<img src='http://www.example.com/image-url.jpg' height='16px' style='margin-bottom:-2px;' width='16px'/>
3. Save Template.

Done!




Add Author Bio Widget below each blog Post for Blogger

Add Author Bio Widget below each blog Post for Blogger
LIVE DEMO
Follow Simple Step to Add Author Bio Widget to your blogger blogs.

  1. Go to  Blogger > Design > Edit HTML
  2. Backup your template
  3. Expand Widget Templates 
  4. Search for the following code (Using CTRL+F Search Box)
<div class='post-footer-line post-footer-line-1'>
 5. Just below it paste the following code

CSS Style CODE:
<style type="text/css">#postauthor { background: #eef7f8; border: 1px solid #c6d9ed; padding:10px; margin: 15px 0; width:100%; height:90px; font-family:Georgia, "Times New Roman", Times, serif; }    #author-info{float:left; width:410px; padding:0 15px 0 0; border-right:1px solid #ccc; }        #author-info img {background:#fff; border: 1px solid #ddd; float: left; margin-right:10px;padding: 5px;box-shadow: 0 0 3px #CCC; padding:3px;}        #author-info h6 { color: #666; font-size: 18px; font-family:Georgia, "Times New Roman", Times, serif; font:Georgia, "Times New Roman", Times, serif }        #author-info h5 {color:#666; text-transform:none; font-size:12px; letter-spacing:0; font-family: Georgia;}        #author-info p { color: #515151; font-size: 12px; line-height:16px; font-family: Georgia;}        * { margin:0; padding:0;}#author-connect{width:21%; float:right; margin-right:8%; }a.gplus-s{background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgs65GnRK9WIERL25xwjGGhoBXUHPRiWTbL33AcygcptjQ7sAuSngLOL9iVjx6zoW_jJSEtXDDaYTT7FOGTFCDiLKsF3nWxruzLBegUO6sipuRozRVdSgPMI1nm8ovPRV_kGLDrEf7RduCr/s1600/gp-icon.png") no-repeat 0 0px; color: #666;  font-weight: bold;margin: 5px 0px; padding: 0 20px;text-decoration: none;}
</style><b:if cond='data:blog.pageType == &quot;item&quot;'><b:if cond='data:post.author == &quot;Author Name&quot;'><div id="postauthor"><div id="author-info"> <img alt='' src='https://lh3.googleusercontent.com/-ZwzsMwuQy6k/AAAAAAAAAAI/AAAAAAAAAss/lbSTNwdDDNI/s120-c/photo.jpg?s=80&amp;d=&amp;r=G'  height='80' width='80' /><h6 style="font:Georgia">Article by <a expr:href='data:post.authorProfileUrl' rel='author'><data:post.author/></a></h6><h5>AuthorName write your Sub-heading here</h5><p>If you like This post, you can follow ProBloggingTools on <strong> <a href="http://twitter.com/TwitterUsername" rel="nofollow" >Twitter  </a> </strong>. Subscribe to <strong> Complete BLogger Tool feed via <a href="http://feeds.feedburner.com/FeedburnerID" rel="nofollow" >RSS</a> or  <a href="http://feedburner.google.com/fb/a/mailverify?uri=FeedburnerID&amp;loc=en_US" rel="nofollow" value"FeedburnerID" > EMAIL </a>  </strong>to receive instant updates.</p></div><div id="author-connect"><iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2FFacebookUSERNAME&amp;send=false&amp;layout=button_count&amp;width=120&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21&amp;appId=230688610312045" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:120px; height:21px;" allowTransparency="true"></iframe>          <a href="https://twitter.com/Twitter-ID" class="twitter-follow-button" data-show-count="false" data-size="small">Follow @Twitter Username</a><script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> <a href="https://plus.google.com/GOOGLE+1-ID" target="_blank" rel="nofollo" class="gplus-s" >Google</a></div></div></b:if></b:if>

CUSTOMIZE:

Edit all Highlighted links in the above CSS code.
Edit Author Name with your Eject Profile Name. (Important )
    7. Edit RSS URL, E-mail URl and Twitter ID.
    8. Edit all Social Media Links with yours.
    9. Change your Gravatar Profile Picture URL
   10. Save template and Visit your blog.





Add Popup Email Subscription Widget For Blogger Using Jquery

Add Popup Email Subscription Widget For Blogger Using Jquery
Pop Up Email Subscription Form For Blogger is a blogger widgetusing jquery. In this widget the form is created by css3 with aauto check feature and the pop up is created using jQuery. We hope this form helps you to increase your blog readers. Now we can see how to Add The Add Pop Up Email Subscription Form For Your blog. Before that you need to see a live demo for better understanding what we are talking about.you can see the live demo by clicking the floating email icon on the left side of the demo page.
live demo:-



Adding jQuery Plugin to blogget Template:

As this widget based on jQuery plugin, First you need to have a jQuery Plugin in your Blog template.
This Step is Required, If your Blog already have this plugin then Ignore this Step.
If your Blog Don’t have this Plugin, Install the jQuery Plugin.

* Add the below line of code before </head> tag.

* Template > Edit HTML > Press CTRL + F > Search "</head>"

jQuery Plugin:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

Adding Widget Code To Blogger

These steps are to add the Pop Up Email Subscription widget to your blog.
  1. Go to Layout >> Add A Gadget, then choose HTML/JavaScript
  2. Paste this code inside it.
<style type="text/css"> #subscribe-button { float: left; position: fixed; bottom: 5%; left: 0; z-index: 999; } #subscribe-widget { display:none; } /* Overlay */ #btnt-overlay { background-color:#000; } /* Container */ #btnt-container { min-height:350px; min-width:500px; color:#222; background-color:#fff; border:4px solid #ddd; } #btnt-container .btnt-data { padding:8px; } #btnt-container a.btntCloseImg { background:url(http://3.bp.blogspot.com/-1lucxKhy3Zs/T3vIg4k-5wI/AAAAAAAAArM/EiH85Hp-ZW8/s1600/x.png) no-repeat; width:25px; height:29px; display:inline; z-index:3200; position:absolute; top:-15px; right:-16px; cursor:pointer; } #description { color: #AAAAAA; font-family: times New Roman; font-size: 25px; font-style: italic; } #description img { float: left; height: 80px; padding: 0 25px 0 10px; width: 80px; } #btntfollowForm { padding: 15px; } #btntfollowForm p { margin: 0 0 10px; } #btntfollowForm input:not([type="checkbox"]){ width: 93%; margin-top: 4px; margin-bottom: 20px; padding: 10px 5px 10px 25px; border: 1px solid rgb(178, 178, 178); -webkit-appearance: textfield; -webkit-box-sizing: content-box; -moz-box-sizing : content-box; box-sizing : content-box; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset; -moz-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset; box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -o-transition: all 0.2s linear; transition: all 0.2s linear; } #btntfollowForm input:not([type="checkbox"]):active, #btntfollowForm input:not([type="checkbox"]):focus{ border: 1px solid rgba(91, 90, 90, 0.7); background: rgba(238, 236, 240, 0.2); -webkit-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.9) inset; -moz-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.9) inset; box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.9) inset; } #btntfollowForm .button input{ background: none repeat scroll 0 0 #3D9DB3; border: 1px solid #1C6C7A; border-radius: 3px 3px 3px 3px; box-shadow: 0 1px 6px 4px rgba(0, 0, 0, 0.07) inset, 0 0 0 3px #FEFEFE, 0 5px 3px 3px #D2D2D2; color: #FFFFFF; cursor: pointer; font-family: 'Arial Narrow',Arial,sans-serif;   font-size: 24px; margin-bottom: 10px; padding: 8px 5px; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5); width: 30%; float: right; } #btntfollowForm .button input:hover{ background: #4ab3c6; text-decoration: none; } #btntfollowForm .button input:active, #btntfollowForm .button input:focus{ background: rgb(40, 137, 154); position: relative; top: 1px; border: 1px solid rgb(12, 76, 87); -webkit-box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset; -moz-box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset; box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset; } .btntFollowFooter { text-align: center; font: 10px Tahoma, Helvetica, Arial, Sans-Serif; padding: 7px 0; margin-top: 80px; text-shadow: 0px 2px 3px #555; position: absolute; width: 500px; } .btntFollowFooter a { color: #222; text-decoration: none; } .btntFollowFooter a:hover { color: #fff; } <!--[if lt IE 7]> #btnt-container a.btntCloseImg { background:none; right:-14px; width:22px; height:26px; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://3.bp.blogspot.com/-1lucxKhy3Zs/T3vIg4k-5wI/AAAAAAAAArM/EiH85Hp-ZW8/s1600/x.png',sizingMethod='scale'); } #btntfollowForm  input{ padding: 10px 5px 10px 32px; width: 93%; } #btntfollowForm  input[type=checkbox]{ width: 10px; padding: 0; } <![endif]--> </style> <div id="subscribe-button"> <a class="subscribe" href="#"><img src="http://2.bp.blogspot.com/-NASh-8VP8qs/T32ePzbJtSI/AAAAAAAAAr8/wjiJnIb7GD4/s1600/subscribe_to_email.png" alt="subscribe" /></a></div> <div id="subscribe-widget"> <div id="btntfollowForm"> <img alt="Subscribe" border="0" float="center" src="http://1.bp.blogspot.com/-WcR7_thytsA/T3xAvSp4RBI/AAAAAAAAArc/zIO8zUiOOT0/s1600/subscribeviaemail.PNG" /> <div id='description'> <img alt="email" border="0" src="http://4.bp.blogspot.com/-RKkfCfOLNx8/T3wPtkmqYuI/AAAAAAAAArU/gGpb8_Hep70/s1600/email-icon.PNG" />Subscribe to our mailing list to get the updates to your email inbox...</div> <form action="http://feedburner.google.com/fb/a/mailverify" method="post" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=24tool', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" target="popupwindow"> <input name="email" placeholder="Enter Your Email..." required="required" type="text" /><input name="uri" type="hidden" value="24tool" /><input name="loc" type="hidden" value="en_US" /> <div class="button"> <input type="submit" value="Subscribe" /></div> </form> </div> <div class="btntFollowFooter"> Delivered by <a href="http://feedburner.google.com/" target="_blank">FeedBurner</a> | powered by <a href="http://www.blogtipsntricks.com/" rel="dofollow" target="_blank">blogtipsntricks</a></div> </div> <script src="https://blogtipsntricks.googlecode.com/files/jquery.btnt.popup.js" type="text/javascript"> </script> <script type="text/javascript"> jQuery(function ($) {     // Load dialog on page load     //$('#subscribe-widget').modal();     // Load dialog on click     $('#subscribe-button .subscribe').click(function (e) {         $('#subscribe-widget').modal();         return false;     }); }); </script>

  1. Replace the code highlighted above with your feedburner username .
    The username for your feed can be found at the end of your feed URL.For example our feedburner URL is http://feeds.feedburner.com/24tool , with chandeepsblogtips as the username.
  2. Now save the widget and view your blog. The widget trigger icon is placed in the left side of your blog.