Show Mobile Navigation
CSS
Showing posts with label CSS. Show all posts
Showing posts with label CSS. Show all posts

Create A Calculator Using JavaScript CSS HTML

Hemant Verma - 6:56 PM


AS we all know that mathematics is very important for us and we can create any calculation using calculator and we can also create and develop calculator by using all of the programming language like C, C++, Java, etc. bt today we willl give the Calculator which is made by HTML CSS and JavaScript.


You can easily use calculator on your Blog/website very easily.This Calculator is made by using JavaScript, CSS, HTML.





Codes of  Calculator 


<style>
/*----- Calculator By www.widgetgenerators.blogspot.com ------ */

.btnLogin
{
    -moz-border-radius:2px;
    -webkit-border-radius:2px;
    border-radius:15px;
    background:#a1d8f0;
    background:-moz-linear-gradient(top, #badff3, #7acbed);
    background:-webkit-gradient(linear, center top, center bottom, from(#badff3), to(#7acbed));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#badff3', EndColorStr='#7acbed')";
    border:1px solid #7db0cc !important;
    cursor: pointer;
    padding:11px 16px;
    font:bold 11px/14px Verdana, Tahomma, Geneva;
    text-shadow:rgba(0,0,0,0.2) 0 1px 0px;
    color:#fff;
    -moz-box-shadow:inset rgba(255,255,255,0.6) 0 1px 1px, rgba(0,0,0,0.1) 0 1px 1px;
    -webkit-box-shadow:inset rgba(255,255,255,0.6) 0 1px 1px, rgba(0,0,0,0.1) 0 1px 1px;
    box-shadow:inset rgba(255,255,255,0.6) 0 1px 1px, rgba(0,0,0,0.1) 0 1px 1px;
    margin-center:12px;
    float:center;
    padding:7px 21px;
}

.btnLogin:hover,
.btnLogin:focus,
.btnLogin:active{
    background:#a1d8f0;
    background:-moz-linear-gradient(top, #7acbed, #badff3);
    background:-webkit-gradient(linear, center top, center bottom, from(#7acbed), to(#badff3));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#7acbed', EndColorStr='#badff3')";
}
.btnLogin:active
{
    text-shadow:rgba(0,0,0,0.3) 0 -1px 0px;
}
/*----- Calculator By www.widgetgenerators.blogspot.com ------ */
</style>



  <script language='JavaScript'>
  <!--------------------------------------------------------------------
    Memory  = "0";      // initialise memory variable
    Current = "0";      //   and value of Display ("current" value)
    Operation = 0;      // Records code for eg * / etc.
    MAXLENGTH = 30;     // maximum number of digits before decimal!

function AddDigit(dig)          //ADD A DIGIT TO DISPLAY (keep as 'Current')
 { if (Current.indexOf("!") == -1)  //if not already an error
    { if (    (eval(Current) == 0)
              && (Current.indexOf(".") == -1)
         ) { Current = dig;
           } else
           { Current = Current + dig;
           };
      Current = Current.toLowerCase(); //FORCE LOWER CASE
    } else
    { Current = "Hint! Press 'AC'";  //Help out, if error present.
    };
   if (Current.indexOf("e0") != -1)
     { var epos = Current.indexOf("e");
       Current = Current.substring(0,epos+1) + Current.substring(epos+2);
     };
  if (Current.length > MAXLENGTH)
     { Current = "Aargh! Too long"; //don't allow over MAXLENGTH digits before "." ???
     };
   document.Calculator.Display.value = Current;
 }

function Dot()                  //PUT IN "." if appropriate.
 {
  if ( Current.length == 0)     //no leading ".", use "0."
    { Current = "0.";
    } else
    {  if (   ( Current.indexOf(".") == -1)
            &&( Current.indexOf("e") == -1)
          )
         { Current = Current + ".";
    };   };
  document.Calculator.Display.value = Current;
 }

function DoExponent()
 {
  if ( Current.indexOf("e") == -1 )
       { Current = Current + "e0";
         document.Calculator.Display.value = Current;
       };
 }

function PlusMinus()
 {
  if  (Current.indexOf("e") != -1)
    { var epos = Current.indexOf("e-");
      if (epos != -1)
         { Current = Current.substring(0,1+epos) + Current.substring(2+epos); //clip out -ve exponent
         } else
         { epos = Current.indexOf("e");
           Current = Current.substring(0,1+epos) + "-" + Current.substring(1+epos); //insert -ve exponent
         };
    } else
    {  if ( Current.indexOf("-") == 0 )
         { Current = Current.substring(1);
         } else
         { Current = "-" + Current;
         };
       if (    (eval(Current) == 0)
            && (Current.indexOf(".") == -1 )
          ) { Current = "0"; };
    };
  document.Calculator.Display.value = Current;
 }

function Clear()                //CLEAR ENTRY
 { Current = "0";
   document.Calculator.Display.value = Current;
 }

function AllClear()             //Clear ALL entries!
 { Current = "0";
   Operation = 0;                //clear operation
   Memory = "0";                  //clear memory
   document.Calculator.Display.value = Current;
 }

function Operate(op)            //STORE OPERATION e.g. + * / etc.
 {
 if (Operation != 0) { Calculate(); }; //'Press "=" if pending operation!
 // note that design is not good for showing *intermediate* results.

  if (op.indexOf("*") > -1) { Operation = 1; };       //codes for *
  if (op.indexOf("/") > -1) { Operation = 2; };       // slash (divide)
  if (op.indexOf("+") > -1) { Operation = 3; };       // sum
  if (op.indexOf("-") > -1) { Operation = 4; };       // difference

  Memory = Current;                 //store value
  // note how e.g. Current.value gives neither error nor value! ***
  Current = "";
  document.Calculator.Display.value = Current;
 }

function Calculate()            //PERFORM CALCULATION (= button)
 {
  if (Operation == 1) { Current = eval(Memory) * eval(Current); };
  if (Operation == 2)
    { if (eval(Current) != 0)
      { Current = eval(Memory) / eval(Current)
      } else
      { Current = "Aargh! Divide by zero"; //don't allow over MAXLENGTH digits before "." ???
      }
    };
  if (Operation == 3) { Current = eval(Memory) + eval(Current); };
  if (Operation == 4) { Current = eval(Memory) - eval(Current); };
  Operation = 0;                //clear operation
  Memory = "0";                  //clear memory
  Current = Current + "";       //FORCE A STRING!
  if (Current.indexOf("Infinity") != -1)        //eg "1e320" * 1
    { Current = "Aargh! Value too big";
    };
  if (Current.indexOf("NaN") != -1)        //eg "1e320" / "1e320"
    { Current = "Aargh! I don't understand";
    };
  document.Calculator.Display.value = Current;
  // NOTE: if no operation, nothing changes, Current is left the same!
 }

function FixCurrent()
 {
  Current = document.Calculator.Display.value;
  Current = "" + parseFloat(Current);
  if (Current.indexOf("NaN") != -1)
    { Current = "Aargh! I don't understand";
    };
  document.Calculator.Display.value = Current;
 }

  //--------------------------------------------------------------->
  </script>

</head>
<body>

<div align="center"><table width="95%"><tr><td> <!-- OUTER MARGIN -->
<font face="Verdana, Arial, Helvetica">

<div align="center"><table border="0"><tr><td width="15%" align="center"><p>&nbsp;</p>
<div align="center">
<FORM name="Calculator">
<table width="30%" border="4" bgcolor="#809FFE"><tr>      <!--OUTER MARGIN OF CALCULATOR-->
<td colspan="2" align="center">

  <p><b><font face="Verdana, Arial, Helvetica" color="#00000" size="3">Calculator</font></b><b><font face="Verdana, Arial, Helvetica" color="#00000" size="3"><br>
    </font>
          <font face="Courier" size="5">
          <input type="text" maxlength="40" size="25" name="Display" onChange="FixCurrent()">
                  </font></b>    </p>
  </td></tr>
<tr><td width="65%" align="center">                   <!--left panel------>

<br><table><tr>
  <td><input type="button" class="btnLogin" name="seven" value="   7    " OnClick="AddDigit('7') "></td>
  <td><input type="button" class="btnLogin" name="eight" value="   8    " OnClick="AddDigit('8')"></td>
  <td><input type="button" name="nine"  class="btnLogin" value="   9    " OnClick="AddDigit('9')"></td>
</tr><tr>
  <td><input type="button" name="four"  class="btnLogin" value="   4    " OnClick="AddDigit('4')"></td>
  <td><input type="button" name="five"  class="btnLogin" value="   5    " OnClick="AddDigit('5')"></td>
  <td><input type="button" name="six"  class="btnLogin"  value="   6    " OnClick="AddDigit('6')"></td>
</tr><tr>
  <td><input type="button" name="one"  class="btnLogin" value="   1    " OnClick="AddDigit('1')"></td>
  <td><input type="button" name="two"  class="btnLogin" value="   2    " OnClick="AddDigit('2')"></td>
  <td><input type="button" name="three"  class="btnLogin"  value="   3    " OnClick="AddDigit('3')"></td>
</tr><tr>
  <td><input type="button" name="plusmin"  class="btnLogin" value="  +/-  " OnClick="PlusMinus()"></td>
  <td><input type="button" name="one"  class="btnLogin" value="   0    " OnClick="AddDigit('0')"></td>
  <td><input type="button" name="two"  class="btnLogin" value="    .    " OnClick="Dot()"></td>
</tr>
</table><br/>


</td>                                   <!--end left panel-->
<td width="35%" align="center">                     <!--right panel----->

<br><table><tr>
  <td><input type="button" name="clear"  class="btnLogin" value="    C     " OnClick="Clear()"></td>
  <td><input type="button" name="AC"  class="btnLogin" value="   AC    " OnClick="AllClear()"></td>
</tr><tr>
  <td><input type="button" name="mul"  class="btnLogin" value="     *     " OnClick="Operate('*')"></td>
  <td><input type="button" name="div"  class="btnLogin" value="     /      " OnClick="Operate('/')"></td>
</tr><tr>
  <td><input type="button" name="add"  class="btnLogin" value="    +     " OnClick="Operate('+')"></td>
  <td><input type="button" name="sub"  class="btnLogin" value="     -      " OnClick="Operate('-')"></td>
</tr><tr>
  <td><input type="button" name="result"  class="btnLogin" value="     =    " OnClick="Calculate()"></td>
  <td align="right"><input type="button" name="exp"  class="btnLogin" value="  E X P  " OnClick="DoExponent()"></td>
</tr></table><br/>


</td>                                   <!--end right panel-->
</tr></table>                          <!--END OUTER MARGIN CALC------->
</FORM></div>






If Any Problem Comes, Ask in Comments


Add 4 in 1 Roseic Wooden Pro Subscription Widget

Hemant Verma - 2:10 PM

Today we want to introduce one of the best and good looking Subscription Widget for blogger in which you can see more interesting features of hover with shadow and very shining effect on the button and social icons and most important this is purely made by the CSS and only four images, so there will not be any kind of error comes in it. I think this widget will give a better interface to your blog and also increase the visitors.





Add 4 in 1 Roseic Wooden Widget

  • Login to Blogger > Dashboard
  • Click on Drop Down Menu and select Layout
  • Add a HTML/JavaScript Gadget
  • Paste below code in it.

<style>
/*---Widget by www.widgetgenerators.blogspot.com---*/
img.beintouch:hover {
    background: none repeat scroll 0 0 #ffbc99;
    border-radius: 16px 16px 16px 16px;
    box-shadow: 0 0 10px #ffbc12;
}
.emailtext {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFJ7mVwCnjHtCB_CaU7PDD18hRBB6LqJmfZ0mH73FjGvBHSae88t-23-ciYNPB0Xvtb105SHwXEzwAxliI46ZeRvQkzq4tfnwJF5plZAaEgQ2b_y3g7CtDqhbq-0mca48tfElqBgnq7f8/s1600/mailbox.png") no-repeat scroll 4px center transparent;
    border: 1px solid #7E4E27;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 1px 1px 4px #7E4E27 inset;
    color: #444444;
    font-weight: bold;
    margin-left: 2px;
    padding: 7px 15px 7px 35px;
    text-decoration: none;
    width: 150px;
}
.ebutton {
    background: -moz-linear-gradient(-45deg, #3C1F0E 0%, #D28A47 30%, #F9E183 30%, #D28A47 55%, #3C1F0E 100%) repeat scroll 0 0 transparent;
    border: 1px solid #D3D3D3;
    border-radius: 4px 4px 4px 4px;
    color: #FFFFFF;
    cursor: pointer;
    font-weight: bold;
    margin-left: -18px;
    margin-top: 5px;
    padding: 6px 15px;
    text-decoration: none;
    text-shadow: 1px 1px 0 #000000;
}
/*---Widget by www.widgetgenerators.blogspot.com---*/
</style>
<table align="" width="317px" cellspacing="0px" cellpadding="1px"><tbody><tr><td><a target="_blank" rel="nofollow" href="http://www.facebook.com/WidgetGenerators"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgyZ_cDISbxAYO5qPYQpRpvFT64wzdValadJV7gAMI5tLsmAHX_Rv2QEPD2jEG1wlFXTZk5zh8TmfoDMMusGJmavPSyVioqghmJ-BtXLAMRE__QTVALuuVLjGT1QHIZRyMN-lxX-uUDmT4/s1600/woden+board+facebook_netoops.png" class="beintouch" /></a></td><td><a target="_blank" href="http://twitter.com/WidgetGenerator" rel="nofollow"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhy5yvdk5FBveQYum4-psS1-87qNsI2AMtpHMCNumKm_a_4WhjtMaXrIb4gHDsiNR7xwFDOwqMnTTQ5Vo1BYRxdQNCx1AhYXuzDpGVkgej6KQwR5d53k0IR4PuTnaN8xJuZZGd2ulwYkoU/s1600/woden+board+twitter_netoops.png" class="beintouch" /></a></td><td><a target="_blank" href="http://feeds.feedburner.com/WidgetGenerators" rel="nofollow"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEieVdoW5Ule4hLsbo3HiioRQs0JyYo7zV4jHnDl5w1GFhe9isdaBIXChBHrsdia01JowRS9G6ykMTZcIMPA-UiXV8ZairwYVQ3k0YrwVY5FPuD9niHHfJpNFBQd7h3_bIbLrbNltGohPQ8/s1600/woden+board+RSS1_netoops.png" class="beintouch" /></a><a href="http://netoopsblog.blogspot.com"></a></td></tr></tbody></table>
<div><b>Get Daily Fresh Update in Inbox via EMAIL</b></div>
<form target="popupwindow" style="margin: 0pt;" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=WidgetGenerators', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" method="post" class="emailform" action="http://feedburner.google.com/fb/a/mailverify">
<input type="hidden" value="WidgetGenerators" name="uri" />
<input type="hidden" value="en_US" name="loc" />
<input type="text" value="Enter your email..." onfocus="if (this.value == &quot;Enter your email...&quot;) {this.value = &quot;&quot;}" onblur="if (this.value == &quot;&quot;) {this.value = &quot;Enter your email...&quot;;}" name="email" class="emailtext" />
<input type="submit" value="Subscribe" title="" class="ebutton" alt="" />
</form>

  • Save your Widget and you are done.


Make Changes....!

  • Replace WidgetGenerators with your feed burner username. (2 times)


If any Problem Comes, Ask in Comments


Yellow Roseic Pro Twitter Widget with Down Sliding

Hemant Verma - 11:18 AM

Twitter badge is also available for blogs and widget and it also helpful to increase the twitter followers and this badge widget is highly customize with JavaScript for scroll the daily tweets in the down direction and next will automatic comes as you seen in the image of this widget. This widget is create by the Javascript and some CSS and the javascript of very simple and easy so, there will not be any error comes in the smoothness of widget.





Add Yellow Roseic Twitter Widget

  • Login to Blogger > Dashboard
  • Click on Drop Down Menu and select Layout
  • Add a HTML/JavaScript Gadget
  • Paste below code in it.

<div style="background:#fff url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjVdarIbqXSga0wVURcWu6pxmGlpq5BnfA4ceRcstSYPKEsiASA3OzbbfVmyaYwSa19ZAuQ8feQ3mgeGL9FBlbD5T7iO9-Zu_1eGU0AFus1KWL-ocafb8Ap6h-XRmivWniOIRDUbFc3Dgk/s1600/bg_twitter.gif) no-repeat;padding-top:40px;padding-left:5px">
<script src="https://dl.dropbox.com/u/63968842/yellow%20roseic%20twitter%20widget%28www.widgetgenerators.blogspot.com%29.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 10,
interval: 3000,
width: 285,
height: 118,
theme: {
shell: {
background: 'transparent',
color: '#000000'
},
tweets: {
background: 'transparent',
color: '#000000',
links: '#B45F04'
}
},
features: {
scrollbar: true,
loop: true,
live: true,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'default'
}
}).render().setUser('WidgetGenerator').start();
</script>
</div>

  • Save your Widget and you are done.

Make Changes....!

  • Replace WidgetGenerator with your twitter username.


If Any Problem Comes, Ask in Comments


Add Google Plus Pop Out Box with Smooth Hover Effect

Hemant Verma - 4:52 PM

As in our one of the last post you see the how to create a Google Plus Followers Widget For Blogger and many you would also saw some Facebook and Twitter Pop Out Box with hover effect on mouse touching. This is also the some concept with it. This is fully customizable easily and simply create  with CSS, jQuery and HTML and it has a very smooth hover effect as you will see in the live demo and also very easy to install it  in your own blog. It looks very professional and when you will add this widget in your blog then it would be increase your Google Plus Page's followers be'coz this is very new concept with Google Plus and as Google recently announced their Plus badge for blogs and website then it's easy to do this. Give it a try in demo.






Add Pop Out Google Plus Widget

  • Login to Blogger > Dashboard
  • Click on Drop Down Menu and select Layout
  • Add a HTML/JavaScript Gadget
  • Paste below code in it.

<style> .post-body{padding:8px 0 10px} </style>
<script type='text/javascript'>
var thumbnail_mode = "float" ;
summary_noimg = 500;
summary_img = 390;
img_thumb_height = 120;
img_thumb_width = 180;
</script>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js' type='text/javascript'></script>
</style>

<script type="text/javascript">
(function() {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = '//pagead2.googlesyndication.com/pagead/js/google_top_exp.js';
var head = document.getElementsByTagName('head')[0];
if (head) {
head.appendChild(script);
}})();
</script>
<style type="text/css">
#gpplikebox{
background-color:#F90101;
display:block;
padding:0;
z-index:99999;
position:fixed;
}
.gpplbadge{
background-color:#F90101;
display: block;
height:150px;
top:50%;
margin-top:-75px;
position:absolute;
left:-47px;
width:47px;
background-image:url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZnkh-HH4oMJ_LhoNaMKsqicM-bQ_9alATpNKmY1mJ_wR682LOTrHbcBl1Xeug41Is0ry_cHO08U9H53FbelKuuL-SJIDtFOi0pZNnVGzghoRjYyAI9Jp8gB4Id2gcGVmPjEr1FaYq8234/s1600/gplus-right.png");
background-repeat:
no-repeat;
overflow:hidden;
-webkit-border-top-left-radius:8px;
-webkit-border-bottom-left-radius:8px;
-moz-border-radius-topleft:8px;
-moz-border-radius-bottomleft:8px;
border-top-left-radius:8px;
border-bottom-left-radius:8px;
}
</style>
<script type="text/javascript">
(function(md){
md(document).ready(function(){
var $dur = "medium";
// Duration of Animation

md("#gpplikebox").css({right: -250, "top" : 100 })
md("#gpplikebox").hover(function () {
md(this).stop().animate({
right: 0
}, $dur);
}, function () {
md(this).stop().animate({
right: -250
}, $dur);
});
md("#gpplikebox").show();
});
})(jQuery);
</script>
<div id="gpplikebox" style="display:none;">
<div class="gpplbadge"></div>
<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQzph77i1fr1MgjrHRmlh-1BMjBtc2uT1iA-2iddQajcVQVZxJhew0kR3WZfmXsxpXm3YcCoqFCgZvZ2uC8oAs16kmrz47UChX3XES-Jh9yHWZ5u5Qzzfncx1SNVKRVkczdiNTpmatzqpv/s1600/best+blogger+tips.png'/></a>
<div class="g-plus" data-action="followers" data-height="300" data-href="https://plus.google.com/108584822806858722112" data-source="blogger:blog:followers" data-width="245">
</div>
<script type="text/javascript">
      (function() {
        window.___gcfg = {'lang': 'en'};
        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>
</div>
</div>

  • Save your template.


Make Changes....!

  •  Replace 108584822806858722112 with your Google Plus Page/Profile ID.



If Any Problem Comes, Ask in Comments


How to Make Fit Images According to Blog

Hemant Verma - 6:08 PM

When we start to post any thing in our blog with images then we have to keep a one thing in mind that will our image completely fit according to our blog ? and when images doesn't fit according to out blog then use start to do change size of your image like small, medium, large, x-large etc. After adding this codes you don't need to adjust your image width just install the codes and see magic.



Make Image Compatible with your blog

  • Login to Blogger > Dashborad
  • Click on Drop Down Menu and select Template
  • Backup your Template before making any changes to your blog
  • Now Click on Edit HTML > Proceed > Expand Widget Templates
  • Press Ctrl + F and search the code shown below. 

]]></b:skin>

  • Paste below code just above it.

img {
max-width: 100%;
height: auto;
width: auto\9; /* ie8 */
}

  • Now Save Your Template and You are done.

Credit- Paul Santosh


If Any Problem Comes, Ask in Comments


Add a Pro About Author Widget Below Every Post

Hemant Verma - 10:31 AM

When we post anything in our blogger post then some times we have to give the info about the author but some author always show a about author info below each post, and we also give the same widget but some blogger write codes at end of the each post, when we post anything but in this widget you have to install codes only one time, and you are done.





Add Pro About Author Widget

  • Login to Blogger > Dashborad
  • Click on Drop Down Menu and select Template
  • Backup your Template before making any changes to your blog
  • Now Click on Edit HTML > Proceed > Expand Widget Templates
  • Press Ctrl + F and search the code shown below.

]]></b:skin>

  • Paste below code before ]]></b:skin>

/*------Codes By www.widgetgenerators.blogspot.com------*/
#wg-authorbox {
background:#333 url(http://2.bp.blogspot.com/-L5Tvv0yJrr4/TvsFt-Mh82I/AAAAAAAACC0/9eva5jXci8U/s1600/about_author.jpg) no-repeat scroll left top;
width:auto;
overflow:hidden;
color:#fff;
-moz-border-radius:15px;
-webkit-border-radius:15px;
border-radius:15px;
margin:5px auto;
padding:40px 10px 10px 20px;
}
#wg-authorbox:hover {
-webkit-box-shadow: 0px 0px 10px  rgba(0, 0, 0, .3);
-moz-box-shadow: 0px 0px 10px  rgba(0, 0, 0, .3);
box-shadow: 0px 0px 20px  rgba(0, 0, 0, .3);
}
#wg-authorbox h4 {
font-size:16px;
color:#fff;
clear:none;
margin:0;
padding:10px 10px 5px;
}
#wg-authorbox .author_small {
font-style:italic;
}
#wg-authorbox img {
-webkit-transition:  -webkit-transform .15s linear;
-webkit-box-shadow: 0 3px 6px rgba(0,0,0,.25);
-moz-box-shadow: 0 3px 6px rgba(0,0,0,.25);
padding: 5px 5px 5px 5px;
-webkit-transform:  rotate(+2deg);
-moz-transform: rotate(+2deg);
float:left;
border:4px solid #F9780E;
margin:10px;
padding:0;
}
#wg-authorbox img:hover {
-webkit-box-shadow:  0 3px 6px rgba(0,0,0,.5);
-moz-box-shadow: 0 3px 6px rgba(0,0,0,.5);
-webkit-transform:  rotate(-1deg);
-moz-transform: rotate(-1deg);
}
#wg-authorbox p {
color:#F9EAD4;
margin:0;
padding:0 10px 10px;
}
#wg-authorbox a {
color:#F9780E;
}

  • Now search for <data:post.body/>
  • Paste below code after it.

<br/>
<br/>
<div id="wg-authorbox">      
<img alt="About Author" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjA7Pya0zf9G7Hp34eA03J7kOcqCIk0jHUQe5qCKfQbWS4GJ0_AkanFVhZMXDHpa5a6ZMrAUaVondt-Spymlj5rElj02S74vTBr1Ciidtn2ikuI0R4s9aX5ZAbzpOgrkbn_0UY_mTcR7xKn/s1600/Butnty.jpg" height="100" width="100"/>
<h4><a href="https://plus.google.com/108584822806858722112" title="Posts by Hemant Verma" rel="author">Posted by Hemant Verma</a></h4>
 <p>Hello This is Hemant Verma ,from Delhi, I like to make blogger hacks, Desing Blogger template, Web Developing and Designing. </p> <p>Visit My Blog <a href="http://www.widgetgenerators.blogspot.com">Widget Generators</a></p> | Follow Me On <a href="http://www.twitter.com/WidgetGenerator">Twitter</a> Or <a href="http://www.facebook.com/WidgetGenerators">Facebook</a></div>

  • Save your template after changes.



Make Changes....!

  • Replace this link with your own image link https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjA7Pya0zf9G7Hp34eA03J7kOcqCIk0jHUQe5qCKfQbWS4GJ0_AkanFVhZMXDHpa5a6ZMrAUaVondt-Spymlj5rElj02S74vTBr1Ciidtn2ikuI0R4s9aX5ZAbzpOgrkbn_0UY_mTcR7xKn/s1600/Butnty.jpg
  • Replace this Google + ID with your own Google + ID 108584822806858722112
  • Replace this name with your own name Hemant Verma
  • Replace this author bio with your own bio Hello This is Hemant Verma ,from Delhi, I like to make blogger hacks, Desing Blogger template, Web Developing and Designing
  • Replace this blog link with your blog/site link http://www.widgetgenerators.blogspot.com
  • Replace this blog name with your blog name Widget Generators
  • Replace this twitter user name with your own user name WidgetGenerator
  • Replace this facebook user name with your own user name WidgetGenerators

 

If Any Problem Comes, Ask in Comments


Groom Floating Pro Social Bookmarking Widget for Blogger

Hemant Verma - 5:30 PM

As from the previous post related with bookmarking widget which liked by many visitors. So, today there is also a new and professional looking widget for blogger with shadow effect and mouse hover effect in the widget with blue groom widget. I give a name for it groom be'coz this is wedding season in India and today's my childhood friend will be a groom :-) and this wedding dress's color is same like this widget's blue background :-)

This widget is simply made by using the HTML CSS and some JavaScripts. We use JavaScript in this widget be'coz we have to make it float with scrolling down and scrolling up.






Add Groom Floating Widget

  • Login to Blogger > Dashboard
  • Click on Drop Down Menu and select Layout
  • Add a HTML/JavaScript Gadget
  • Paste below code in it. 


<link href="https://dl.dropbox.com/u/63968842/floting%20widget.css" rel="stylesheet" type="text/css" />

<script type="text/javascript">
<!--
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>



<div id="floatdiv">
<div id="sidebar">



<div id="rss"><a href="http://feeds.feedburner.com/WidgetGenerators" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('rss','','https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjHqV-nmHoZUTQyQsPPVqtEd1_KhjZEtRIm1O_vH4betZQEFwg6T8G-oY9WlfRibNZzXjZLv0seNoXbxrHlna71YX2ocRk-559HhSFOXnabBPzCsRdBkxZINsfd7IaK6uu_0Rs-f1Jc7pCg/s1600/rss-front.png',1)"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhj2Pl7mH7AMVuQndpbf2fRMNktRVs4RTAFGHLVOqDCy-nErqyMpLNZtgbdWz7RjoFUaowhTTtll4RsecOT9RoDXVvuMKlKPuzLtxVa2vUXou88zfLqC3pC15MaExZduh-irct2e68EYYdz/s1600/rss-back.png" alt="My RSS Feed" name="rss" width="48" height="48" border="0" id="rss2" /></a></div>

<div id="youtube"><a href="http://www.youtube.com/WidgetGenerators" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('you tube','','https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqCoYXhuiJnNDxNEDqx2kbHzwzpZ91GAe6eVrcDoIUBCsQwaFEHCafZA_mO5yxc_CkJSdzzRUU6LeURNX1k09c3eSq_BOac4_WkL1vEF5dBi7bu160JQz6oyBfu_r7Lm9W6w0bGojEV2nG/s1600/youtube-front.png',1)"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTRhqaNYYKnCBYePGTRt5bHv877_1DyulpY2yVM8OC8Mt_RKeLd4aBItXxwaCB-xb1UjV4ybnTR5SwRuOFiJqNwpMdqALAMHDdRX7RmToJaUTh5KbNsxQ6YcGDWPMkz-h-eIWGrcIvvyk6/s1600/youtube-back.png" alt="My YouTube Channel" name="you tube" width="52" height="44" border="0" id="you tube" /></a></div>

<div id="twitter"><a href="http://www.twitter.com/WidgetGenerator" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('twitter','','https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgRyQJoEymh5xUQCgaa7VHthGXDKftFiAVDPCyKJS9mPqowR62aGjyWNrqtFP1ZUoVVtTXNq1ysGIIs_1oe17ANwk61NGMcfKdv2i1TBZzncGULbho1zAFPicdkpKlMFZ352MHlaWlblKQz/s1600/twitter-front.png',1)"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5lNjNDw00bGpHuczfWkJ11TdIltod-W3yDbET8WUF5W67RWOFI2NCpXoCRb6kt2t9fyqNQzwcHTBxKs9zIfx3qjIsFhjIFOwxZpdSiKKNtAhLv65ya7vEf1lKhdMNddAIBIOit8LBSyY9/s1600/twitter-back.png" alt="My Twitter Feed" name="twitter" width="53" height="53" border="0" id="twitter2" /></a></div>

<div id="contact"><a href="http://www.facebook.com/WidgetGenerators" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('contact','','https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhVPkoF9SGZ2buYJ5oSAWY9HDgxJBQaDI5bvWPbpPFnKxvmd2r3dmvbwHknmR-hlRkBz_nDps3-nMaOG7p_2gFJITxIT1Fa8KaKv6huKoE3D4gbiOgRIVO7Tbql0K5TXKKOUBh813fMctdy/s1600/facebook-icon.png',1)"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg5jUmq0fEnNzy5JYwYri8ws_D3yHVZwyqjhTbOE-n8qrT0iDNW94-3wNm9ibJj7oAUba408G_7IEadrxpYbiiR4-kCqx3YarySRHx5GE1cjVzzCRGCtLwcKM1gyipSLiTqjA_G5PUMIT2S/s1600/facebook_icon.png" alt="Facebook" name="contact" width="42" height="41" border="0" id="contact2" /></a></div>


</div>
</div>
<script type="text/javascript" src="https://dl.dropbox.com/u/63968842/floting%20widget.js"></script>

  • Now Save Your Widget  and You are done.


Make Changes....!

  • Replace this text with your RSS username WidgetGenerators
  • Replace this text with your Youtube usename WidgetGenerators
  • Replace this text with your Twitter username WidgetGenerator
  • Replace this text with your Facebook username WidgetGenerators



If any Problem Comes, Ask in Comments


Blackino Pro Social Bookmarking Widget

Hemant Verma - 8:05 PM

Most Bookmarking Widget is making day by day but this one is very different be'coz it's a totally professional and very smart with blacky background widget which is full fill with the professionalism and it's perfect for the white and black template and also good for the grey template like our template. and it's blackino called be'coz black is very smart color. 

This widget is fully customize with CSS and HTML so it's easy to install and also it works very smoothly.We also use some little bit code of JavaScript in the end of codes, that is only for smoothness of colors and for giving the sharpness on them, and also reduce the weight of CSS and HTML codes and it will give a professional look to your blog and it's also perfect to attract the visitors and easily you can increase your members.







Add Blackino Pro Social Bookmarking Widget 

  • Login to Blogger > Dashboard
  • Click on Drop Down Menu and select Layout
  • Add a HTML/JavaScript Gadget
  • Paste below code in it.

<style>
.wgbanner {
margin-left:15px;
margin-top:10px;
}

.wg-vl {
margin-top:7px;
}

#wg-social-hover {
position:relative;
width:240px;
height:400px;
background:#554e4c url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi0Ky7f8b1e9YIV5ueJE_N5H6UvAV1n5D1K-SzXURYs2G2UcmB_da2_Mqp3SXEkSvgjG33aR7F-QwNE3GGZ828E-ChvxfhU5QvaB5Ekek3AfifgsIbXaJgZqMYTzcoQ6Oj7qELxYyySuvo/s1600/vintage.png);
}

#wg-social-hover #title {
font-family:'Open sans';
font-size:28px;
color:#fff;
font-weight:600;
text-align:center;
line-height:1.1em;
text-shadow:1px 1px 1px rgba(0,0,0,0.3);
margin:30px 20px 0;
}

#wg-social-hover #title span {
display:block;
font-size:14px;
line-height:1.5em;
margin-top:10px;
font-weight:400;
}

#wg-social-hover #links {
position:absolute;
bottom:0;
width:100%;
}

#wg-social-hover a {
display:block;
height:42px;
line-height:42px;
color:#fff;
font-size:12px;
background:rgba(0,0,0,0.08);
border-top:1px solid rgba(0,0,0,0.1);
-webkit-transition:all .25s ease-in-out;
-moz-transition:all .25s ease-in-out;
-o-transition:all .25s ease-in-out;
padding:0 20px;
}

#wg-social-hover a:hover {
background:rgba(0,0,0,0.15);
text-decoration:none;
}

#wg-social-hover a.twitter:hover {
background:#79dbff;
}

#wg-social-hover a.facebook:hover {
background:#6e9bee;
}

#wg-social-hover a.google:hover {
background:#00be00;
}

#wg-social-hover a.pinterest:hover {
background:#cb2027;
}

#wg-social-hover a.rss:hover {
background:#ffae42;
}

#wg-social-hover a span {
height:15px;
line-height:15px;
width:15px;
text-align:center;
margin-right:20px;
font-size:13px;
border-radius:99px;
background:rgba(0,0,0,0.1);
padding:5px;
}

#home-tagline {
text-align:center;
font-size:32px;
color:#000;
font-weight:300;
margin:60px 0 40px;
}

#home-tagline strong {
color:#ff5421;
font-weight:300;
}

#home-highlights {
margin-bottom:40px;
}

.home-highlight {
float:left;
width:142px;
margin-right:21px;
text-align:center;
display:block;
opacity:0.9;
color:#796f6c;
font-size:40px;
background:rgba(0,0,0,0.04);
-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius:4px;
-webkit-transition:all .25s ease-in-out;
-moz-transition:all .25s ease-in-out;
-o-transition:all .25s ease-in-out;
padding:30px 0;
}

.home-highlight:hover {
color:#3a3534;
text-decoration:none;
background:rgba(0,0,0,0.1);
}

.home-highlight-title {
font-size:13px;
text-align:center;
color:#796f6c;
cursor:pointer;
font-weight:900;
-webkit-transition:all .25s ease-in-out;
-moz-transition:all .25s ease-in-out;
-o-transition:all .25s ease-in-out;
margin:7px 0 0;
}

.home-highlight:hover .home-highlight-title {
color:#3a3534;
}

#home-featured {
min-height:400px;
margin-bottom:37px;
}

#home-featured .home-divider {
margin-top:0;
}

#home-featured h2 {
text-align:center;
font-size:32px;
color:#161414;
font-weight:300;
margin:0 0 40px;
}

#home-featured h2:after {
display:block;
content:"";
width:342px;
height:1px;
background:#161414;
margin:5px auto 0;
}

.featured-theme-entry-content {
font-size:16px;
float:left;
width:430px;
font-weight:300;
}

.featured-theme-entry-content h3 {
font-size:21px;
line-height:1.4em;
font-weight:400;
margin:0;
}

.featured-theme-entry-content .button {
margin-top:15px;
}

.featured-theme-entry-content .button:hover {
background:#f5634a;
opacity:1;
}

.featured-theme-entry-img {
display:block;
float:right;
margin-right:5px;
}

.featured-theme-entry-img a {
display:block;
background:#fff;
border-radius:2px;
padding:6px;
}

#featured-theme-slider .flex-control-nav {
position:absolute;
top:-20px;
left:-54px;
}

#featured-theme-slider .flex-direction-nav li a {
background:#312d2c;
cursor:pointer;
display:block;
height:70px;
line-height:70px;
width:30px;
color:#fff;
text-align:center;
position:absolute;
top:50%;
-moz-transition:background .3s ease-in-out 0;
opacity:0.15;
border-radius:4px;
margin:-30px 0 0;
}

#featured-theme-slider .flex-direction-nav li .flex-prev {
left:-90px;
}

.home-highlight p,#featured-theme-slider .flex-direction-nav {
margin:0;
}
</style>

<div id="wg-social-hover">
<div class="wgbanner"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAcjhCO9K2r8reIaZmHyHvI17JtyWD1oNJ5iAtAIN8psrJAd_wR6k6wR1LQVW6ZOXIib4z0qUNP-1tz-8B9MVK2zrQf24-eVu27G-MA2ac_LaEaaHpRXaMVW6E1iz22hsWHMyuIVRDFXw/s1600/SUB-BAN.png" /></div>

    <div id="links"><a href="http://twitter.com/WidgetGenerator" class="twitter" title="Twitter" target="_blank"><div class="wg-vl"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgil6lXNra-5PCS6n3zSn0gA3ahYG4Xy6TbMF_JH3RhfzJttTR3Q2LZ_IyoSb74KAAWmnbfylTNWb3NRY8mebMEXo3A-_iiJc2lMOZfcOadZL8SFUCLdwXdWJ0lVcAmo4LyqETCLmHAwdA/s1600/twitter.png" /></div></a>

    <a href="http://www.facebook.com/WidgetGenerators" class="facebook" title="Facebook" target="_blank"><div class="wg-vl"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjrGKafosKCiRFMTANtS0tNZMaGdqAEWRkKERtu9IZorqsLItsAYEm45UZa-6wl0-opXdGn-lmuJ3qLHI-5BeScLQMUYzauCK7JgLHw9_lORpONXkciIk31FXLE5NdjiatETt_FIGwVHDs/s1600/FB.png"  /></div></a>

    <a href="https://plus.google.com/u/0/107877224551351252870" class="google" title="Google Plus" target="_blank"><div class="wg-vl"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioX0maRp_86gyCtm5TkQBLlrPQyZ_ZZHF_FL8BbSVClLJz3PjbHnB_H-vwmh62MjuqSH5IXNqMAXmPiIEOA2Y7ewjNFP5NpN_XFAzH76FbylDCKs4xQUNh99RKEwhvJarRsgnm0-D8CLQ/s1600/google.png" /></div></a>

    <a href="http://pinterest.com/WidgetGenerators" class="pinterest" title="Pinterest" target="_blank"><div class="wg-vl"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1fbG63pzyOlgOIDjJTRx9JWQgbi6MwsSk4DWyZSqh9tbf_3a1BleaPbmiFaoO83Xf4n0Gi4ql6Dtlhg1egkePm4MDQmHZO85FlbvIiiFQwpGxGhgHcCSvb7vWtPcFan58N2jtspp8mdY/s1600/pin.png" /></div></a>

    <a href="http://feeds.feedburner.com/WidgetGenerators" class="rss" title="Feedburner" target="_blank"><div class="wg-vl">
<script language="javascript">
document.write( unescape( '%3C%69%6D%67%20%73%72%63%3D%22%68%74%74%70%3A%2F%2F%34%2E%62%70%2E%62%6C%6F%67%73%70%6F%74%2E%63%6F%6D%2F%2D%79%4F%45%5A%51%54%37%69%74%37%34%2F%55%4B%39%77%43%6C%43%50%77%70%49%2F%41%41%41%41%41%41%41%41%49%50%51%2F%45%4B%34%43%42%39%32%78%51%39%38%2F%73%31%36%30%30%2F%72%73%73%2E%70%6E%67%22%20%2F%3E%3C%2F%64%69%76%3E%3C%2F%61%3E%0A%3C%2F%64%69%76%3E%3C%2F%64%69%76%3E%20%20%20%20%0A%3C%73%70%61%6E%20%73%74%79%6C%65%3D%22%20%6C%69%6E%65%2D%68%65%69%67%68%74%3A%30%70%78%3B%20%66%6F%6E%74%2D%73%69%7A%65%3A%38%70%78%3B%20%66%6F%6E%74%2D%77%65%69%67%68%74%3A%62%6F%6C%64%3B%20%61%6C%69%67%6E%3A%72%69%67%68%74%3B%0A%20%20%20%20%20%20%22%3E%0A%20%20%20%20%3C%61%20%73%74%79%6C%65%3D%22%63%6F%6C%6F%72%3A%23%44%33%44%33%44%33%3B%22%20%68%72%65%66%3D%22%68%74%74%70%3A%2F%2F%77%77%77%2E%77%69%64%67%65%74%67%65%6E%65%72%61%74%6F%72%73%2E%62%6C%6F%67%73%70%6F%74%2E%63%6F%6D%22%3E%57%69%64%67%65%74%20%3C%2F%61%3E%3C%2F%73%70%61%6E%3E' ) );
</script>

  • Now Save Your Widget and Say Bingo.


Make Changes....!

  • Replace it WidgetGenerators with your social usernames (FOUR TIMES)
  • Replace it 107877224551351252870 with your Google + id


If Any Problem Comes, Ask in Comments


Roseic Pro Subscription Box for Blogger

Hemant Verma - 9:41 PM


Blogger Widget is going very hit on the daily bases and the competition is going very high in this line of blogging be'coz bloggers don't have the new fresh Widgets on blogging they are just posting something like Blogger News, OR some tricky trick related with webmaster or web designing but we have a Pro and Fresh Subscription Box for Blogger with Mouse Hover Effect and named as 'Rosiec' be'coz I love Rose.



Add Roseic Pro Subscription Box

  • Login to Blogger > Dashborad
  • Click on Drop Down Menu and select Template
  • Backup your Template before making any changes to your blog
  • Now Click on Edit HTML > Proceed > Expand Widget Templates
  • Press Ctrl + F and search the code shown below. 


</head>

  •  Paste below codes before </head>

<link href='http://fonts.googleapis.com/css?family=Allura' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>

  • Save your template.
  • Now Go to Layout > Click on Add a Gadget
  • Select HTML/JavaScript Widget.
  • Paste below code in it.

<style>
.wg-subw{
padding:20px;
border:1px solid;
-moz-box-shadow:    inset 0 0 30px #000000;
-webkit-box-shadow: inset 0 0 30px #000000;
box-shadow:         inset 0 0 30px #000000;
transition: box-shadow .777s;
-webkit-transition: box-shadow .777s;
-moz-transition: box-shadow .777s;
-o-transition: box-shadow .777s;
-ms-transition: box-shadow .777s;
}
.wg-subw:hover{
-moz-box-shadow:    inset 0 0 50px #000000;
-webkit-box-shadow: inset 0 0 50px #000000;
box-shadow:         inset 0 0 50px #000000;
}
.textfonts{
font-family: 'Lobster', cursive;
font-size:28px;
}
.firstfonts{
font-size:40px;
font-family: 'Allura', cursive;
}
.wg-input
{
background: url("http://i1203.photobucket.com/albums/bb382/chandeep10/btnt-custom-theme/email.png") no-repeat scroll 10px center #FFFFFF;
font-family: 'Lobster', cursive;
padding: 8px 40px;
}
.wg-button{
border:1px solid black;
background: -moz-linear-gradient(center top , #30A146 0%, #249334 100%) repeat scroll 0 0 transparent;
border: 0 none;
border-radius: 4px 4px 4px 4px;
color: #FFFFFF;
cursor: pointer;
font-family: "Droid Sans","Lucida Grande",Tahoma,sans-serif;
font-weight: bold;
padding: 10px 40px;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
background:#000;
border: 0 none;
border-radius: 4px 4px 4px 4px;
color: #FFFFFF;
cursor: pointer;
font-family: "Droid Sans","Lucida Grande",Tahoma,sans-serif;
font-weight: bold;
padding: 10px 40px;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
transition: background-color .777s;
-webkit-transition: background-color .777s;
-moz-transition: background-color .777s;
-o-transition: background-color .777s;
-ms-transition: background-color .777s;
}
.wg-button:hover{
background:grey;
}
&#8203;
&#8203;.sidebar .Followers
{
border-style:inset;
}
.description
{
display: none;
}
</style>
<div class='wg-subw'>
<form action='http://feedburner.google.com/fb/a/mailverify' method='post' onsubmit='window.open(&#39;http://feedburner.google.com/fb/a/mailverify?uri=WidgetGenerators&#39;, &#39;popupwindow&#39;, &#39;scrollbars=yes,width=550,height=520&#39;);return true' target='popupwindow'>
<center>
<div class='firstfonts'>Subscribe Us</div>
<div class='textfonts'>Get Latest Updates About Blogger Stuff Direct in Your Inbox</div>
<p><input class='wg-input' name='email' onfocus='if (this.value == "Enter your email...") {this.value = ""}' style='font-size:15px; width:240px' type='text' value='Enter your email...'/></p><input name='uri' type='hidden' value='WidgetGenerators'/><input name='loc' type='hidden' value='en_US'/>
<input class='wg-button' type='submit' value='Subscribe'/>
</center></form></div>
  • Save your Widget.


Make Changes....!

  • Replace WidgetGenerators with your feed burner user name. 



If Any Problem Comes, Ask in Comments


Social Bookmarking Buttons Beside Adsense Ad

Hemant Verma - 10:44 PM

As many times you probability see in pro websites OR in pro blogs that Adsense always look below the header and beside the adsense unit you will see some social bookmarking buttons.



This tutorial will allow to do this without any cost be'coz i have saw that some kinds people charge money for it but you can do this without any cost.



Read Also- Adsense Unit Placing Pack

1. Social Bookmarking Buttons Beside Adsense Ad



It includes two parts.

      1. Generate Code from Generator.
      2. Paste that Code in Template.



Installation 1st Part (Generate Codes)

  • Copy your 336 x 228 OR 300 x 250 adsense code.
  • Paste in below Generator.
  • Click on Generate button.




Installation 2nd Part (Paste Code in Templates)

  • Login to Blogger > Dashborad
  • Click on Drop Down Menu and select Template
  • Backup your Template before making any changes to your blog
  • Now Click on Edit HTML > Proceed > Expand Widget Templates
  • Press Ctrl + F and search the code shown below.  

 ]]></b:skin>

  • Copy that CSS codes from generators and Paste just above ]]></b:skin>
  • Now again Press Ctrl + F and search the code shown below. 
<data:post.body/>

  •  and, Copy that HTML codes from generators and Paste just above <data:post.body/>
  • Save Your Template say bingo and You are done.



If Any Problem Comes, Ask in Comments


Add Borders to the Images in Blogger Post

Hemant Verma - 4:02 PM

When we upload OR add any image in blogger, shows a very simple without and borders but when we add the borders in our images then our team also think that we should also give a post about the borders for the images and then we create a new border style for images in blogger. This border style includes the bottom standing shadow below of image and little round corner as you can see in live demo.





Add Border in Images

  • Login to Blogger > Dashborad
  • Click on Drop Down Menu and select Template
  • Backup your Template before making any changes to your blog
  • Now Click on Edit HTML > Proceed > Expand Widget Templates
  • Press Ctrl + F and search the code shown below. 
]]></b:skin>

  •  Paste below code just above it.
.post-body img {
padding: 4px;
border: 1px solid #AAA;
background-color: #F0F0F0;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0 15px 10px -12px black;
-moz-box-shadow: 0 15px 10px -12px black;
box-shadow: 0 15px 10px -12px black;
}

  • Save your template and you are done.



If any Problem Comes,  Ask in Comments



How to Remove No Post from Bloggger

Hemant Verma - 2:07 PM

When you don't post anything in your blog then blogger shows a message that No Post and many bloggers designed their blog as they don't want to show posts in home page so they don't post anything but blogger shows a message   No Post and they want to disable it OR remove it. So, you can do it very easily by adding some 3 line codes of CSS.



Remove No Post from Blogger

  • Login to Blogger > Dashborad
  • Click on Drop Down Menu and select Template
  • Backup your Template before making any changes to your blog
  • Now Click on Edit HTML > Proceed > Expand Widget Templates
  • Press Ctrl + F and search the code shown below.   

]]></b:skin>

  • Paste below code before ]]></b:skin>

/*---Remove No Post by widgetgenerators.blogspot.com----*/
      .status-msg-wrap
      {
      display: none;
      }
/*---Remove No Post by widgetgenerators.blogspot.com----*/

  •  Save Your Template


If Any Problem Comes, Ask In Comments


Rose Chemical Social Sharing Bottles Widget

Hemant Verma - 10:43 AM

Our create a very awesome and professional social sharing widget for blogger which can you add below every post  of your blog and it works perfectly with blogger and you can also add it on your other websites like Wordpress, Joomla, Webs, etc.

Widget contains a spinning effect on mouse hover you can see live demo at the ending of this post.


Add Social Sharing Bottles Widget

  • Login to Blogger > Dashboard
  • Click on Drop Down Menu and select Template
  • Backup your Template before making any changes to your blog
  • Now Click on Edit HTML > Proceed > Expand Widget Templates
  • Press Ctrl + F and search the code shown below. 
<div class='post-footer-line post-footer-line-1'/>

  • If you can't find above code then Search below code
<div class='post-footer-line post-footer-line-1'>

  •  Now Paste Below Code Just After after it.

<b:if cond='data:blog.pageType == "item"'>
<style>
p#socialicons img {    -moz-transition: all 0.5s ease-in-out;    -webkit-transition: all 0.5s ease-in-out;    -o-transition: all 0.5s ease-in-out;    -ms-transition: all 0.5s ease-in-out;    transition: all 0.5s ease-in-out;} p#socialicons img:hover {    -moz-transform: rotate(360deg);    -webkit-transform: rotate(360deg);    -o-transform: rotate(360deg);    -ms-transform: rotate(360deg);    transform: rotate(360deg);}
</style>
<center><p id='socialicons'>

<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 border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDcZgeCB3N93KlR-TxQiv1wDRrUm6ENdCepWDKg0cNwQTDpKGaAxU5b_ctf36Rr3RMLdmfN_cGZvY1XJhbZjmL2rZifBsd4c9y2ehuaCvIrn28Co2X8kWiL2pKsp7nS27co1TwKoaBAjoS/s1600/Facebook-128.png' title='Share on Facebook'/></a>
<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 border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEie5LTzSIUhZRYX2hOlvB2cPno8YLo5UTDHQceBgOb8_p76uPG-vN3mYCrpYdiGXoLCJwmkEbbyRDHtoH0Dlb76eSQGbSOqH9WvxHJylnUgDYv5RrNv2IEtYlzHCfOksuGW5bxQoELY1DHF/s1600/Twitter-128.png' title='Share on Twitter'/></a>   
 <a expr:href='&quot;http://digg.com/submit?phase=2&amp;url=&quot;  + data:post.url' rel='external nofollow' target='_blank'><img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjG_VACZURhyphenhyphen33ak7qPo4cGbfld52ilh1xEiiynLI79B19T8Jpg9_42x9zV5EWEXAj_2TG8fG6MGUo1lt8ecMThE_n7iWbKt4wClsL0J9veN0ri96w_cprGWrcBaoxdL9b_gATaK6DaBJxx/s1600/DeviantArt-128.png' title='Share on Digg'/></a>
</p></center></b:if>

  • Save Your Template.
  • Say Bingo and You are Done.

Next Previous
Editor's Choice

 



Make Your Blog Like a Pro
About | Contact | Affiliates | Privacy Policy | TOS