Showing posts with label Blogger Design. Show all posts
Showing posts with label Blogger Design. Show all posts

Tuesday, January 19, 2016

Add CSS Minifier and Expander tool to blogger blog

Add CSS Minifier and Expander tool to blogger blog

Yes Why do we need to minify CSS codes? In blogger SEO page speed is most important factor currently considered by search engines. Heavier web pages are ignored during crawling search results. There are so many other factor's that effects page speed but CSS minification is one of the main way to increase your page speed.
Let your visitors minify their CSS codes on your blogger blog & add CSS Minifier and Expander tool to blogger. This is inspirational tool for css code minification.
Well today I am going to share amazing blogger design tool. Adding CSS minifier and expander tool in blogger blog will be handled is some steps.

Steps for adding  CSS Minifier and Expander tool to your blog:
Step 1: Log in to the Blogger blog you are wanting to add pages to and click on the “Pages” link.
Step 2: Click the “New Page” button.
Step 3: Type the page title (this will appear as a link on the navigation bar), add the the below code in HTML and then click “Publish.”


<style>
img,
object,
embed,
video {
  max-width: 100%;
}

#pbw-wrapper {
  width: 100%;
  margin: 0 auto;
}

#pbw-header {
  width: 61.6%;
  /*1000*/
  
  height: 71px;
  margin: 5% auto 0 auto;
  background: #16A085;
  font-family: 'Lobster', cursive;
}

h1 {
  padding: 2% 0 0 2%;
  color: #fff;
  font-size: 2em;
  font-weight: 300;
}

#pbw-main {
  width: 61.6%;
  /*616/1000*/
  
  height: 361px;
  margin: 0 auto;
}

#left-box {
  width: 49.8%;
  height: 361px;
  float: left;
  background: #34495E;
  text-align: center;
}

#left-box > input {
  text-align: left;
  margin: 0 auto;
}

#right-box {
  width: 49%;
  height: 361px;
  float: right;
  background: #34495E;
  text-align: center;
}

#right-box > input {
  text-align: left;
  margin: 0 auto;
}

#input {
  width: 99%;
  height: 357px;
  border: none;
}

#output {
  width: 99%;
  height: 357px;
  border: none;
}

#help {
  width: 61.6%;
  /*1000*/
  
  height: 71px;
  background: #232323;
  margin: 0 auto;
  font-family: 'Lato', sans-serif;
  color: #fff;
}

#help p {
  margin: 0 20% 0 10%;
}

#help p:nth-child(2) {
  text-align: right;
  margin: 0 20% 0 0;
}

#help p:nth-child(3) {
  margin: 0 0 0 6%;
}

#console {
  width: 61.6%;
  /*1000*/
  
  height: 71px;
  background: #2C3E50;
  margin: 0 auto;
}

#minimize {
  text-align: center;
  float: left;
  width: 15%;
  margin: 2%;
}

#expand {
  text-align: center;
  float: left;
  width: 15%;
  margin: 2%;
}

#helpbtn {
  color: #fff;
  text-align: center;
  float: left;
  width: 3%;
  margin: 2% 0;
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  vertical-align: middle;
  padding: 1%;
  background: #2ECC71;
}

#helpbtn:hover {
  border-top-color: #27AE60;
  background: #27AE60;
  color: #ccc;
}

#helpbtn:active {
  border-top-color: #16A085;
  background: #16A085;
}

#info {
  width: 47%;
  height: 45px;
  float: right;
  color: #fff;
  padding: 2% 0 0 0;
  font-family: 'Lato', sans-serif;
  text-align: center;
  font-size: 1.5em;
}

.button {
  background: #8E44AD;
  color: white;
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  vertical-align: middle;
  padding: 1%;
}

.button:hover {
  border-top-color: #9B59B6;
  background: #9B59B6;
  color: #ccc;
}

.button:active {
  border-top-color: #27AE60;
  background: #27AE60;
}
</style>
<script>
$(document).ready(function() {
  $("#minimize").click(function() {
    var e = $("#input").val();
    $("#info").css("display", "block");
    if (e != "") {
      e = e.replace(/[\n]/g, " ");
      $("#output").val(e);
      $("#info").text("Succesfully minified");
      setTimeout(t, 4e3);

      function t() {
        $("#info").fadeOut().empty()
      }
    }
  })
});
$(document).ready(function() {
  $("#expand").click(function() {
    var e = $("#input").val();
    $("#info").css("display", "block");
    if (e != "") {
      e = e.replace(/\#/g, "\n#");
      e = e.replace(/\./g, "\n.");
      e = e.replace(/\{/g, "{\n");
      e = e.replace(/\}/g, "}\n");
      e = e.replace(/\;/g, ";\n");
      $("#output").val(e);
      $("#info").text("Succesfully expanded");
      $("#output").select();
      setTimeout(t, 4e3);

      function t() {
        $("#info").fadeOut().empty()
      }
    }
  })
});
$(document).ready(function() {
  $("#help").css("display", "none");
  $("#helpbtn").click(function() {
    $("#help").slideToggle("slow")
  })
})
</script>
  <br />
<div id="pbw-wrapper">
<div id="pbw-header">
<h1>
CSS Minifier and Expander tool</h1>
</div>
<div id="pbw-main">
<div id="left-box">
<textarea id="input"></textarea>
      </div>
<div id="right-box">
<textarea id="output" onclick="this.focus();this.select()" readonly="readonly"></textarea>
      </div>
</div>
<!--/main-->
    <br />
<div id="help">
Input the CSS codes in left box,<br />
Minified code will be shown in right box<br />
↓ Push button for either minifying or expanding your code</div>
<div id="console">
<div class="button" id="minimize">
MINIFY</div>
<div class="button" id="expand">
EXPAND</div>
<div id="helpbtn">
?</div>
<div id="info">
</div>
</div>
</div>

 Result We love to help you adding CSS Minfifer and expander tool to blogger blog. Ask your question's if you are facing in problem installing CSS Minifier and Expander tool to blogger blog. Please don't forget to put your suggestions in comments. thank you
Read more

Saturday, January 16, 2016

Simple CSS Slider with radio buttons widget for blogger

Slider with buttons widget for blogger


                                                             View Demo

Here I am going to share awesome sideshow for your blog and website. This is purely css designed slider with radio buttons widget for blogger. You can edit and add your pictures and description with them. It will make your blog look more professional and awesome. Slideshow consists of 6 sliding images and two social sharing buttons and description and heading area.


Adding this to your blog/website

Note: Here I am going to show you how to add into blogger.
Go to Blog Title Template Edit and search for 
]]></b:skin>
and add the below code just above it.


/*
 radio click through #2
 Hornebom / 2013-10-23
 MIT licensed
 http://hornebom.com/
*/
@import url(http://fonts.googleapis.com/css?family=Titillium+Web:300);
@import url(http://weloveiconfonts.com/api/?family=entypo);
*, *:before, *:after {
  margin:0;
  padding:0;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}
#gal {
  position:relative;
  width:600px;
  height:300px;
  margin:0 auto;
  top:100px;
  background:white;
  -webkit-box-shadow:0px 0px 0px 10px white,
             5px 5px 0px 10px rgba(0,0,0,0.1);
  -moz-box-shadow:0px 0px 0px 10px white,
             5px 5px 0px 10px rgba(0,0,0,0.1);
  box-shadow:0px 0px 0px 10px white,
             5px 5px 0px 10px rgba(0,0,0,0.1);
  -webkit-transform:translate3d(0, 0, 0);
  -moz-transform:   translate3d(0, 0, 0);
  -ms-transform:    translate3d(0, 0, 0);
  -o-transform:     translate3d(0, 0, 0);
  transform:        translate3d(0, 0, 0);
}
#gal:after {
  content:'';
  position:absolute;
  bottom:24px;
  right:0;
  left:0;
  width:100%;
  height:1px;
  background:rgba(255,255,255,0.35);
  z-index:3;
}
#gal ul {list-style-type:none;}
input[type="radio"], input[type="radio"] + label {
  position:absolute;
  bottom:15px;
  display:block;
  width:20px;
  height:20px;
  -webkit-border-radius:50%;
  -moz-border-radius:50%;
  border-radius:50%;
  cursor:pointer;
}
input[type="radio"] {
  opacity:0;
  z-index:9;
}
input[value="one"], input[value="one"] + label {left:20px;}
input[value="two"], input[value="two"] + label {left:128px;}
input[value="three"], input[value="three"] + label {left:236px;}
input[value="four"], input[value="four"] + label {left:344px;}
input[value="five"], input[value="five"] + label {left:452px;}
input[value="six"], input[value="six"] + label {right:20px;}
input[type="radio"] + label {
  background:rgba(255,255,255,0.35);
  z-index:7;
  -webkit-box-shadow:0px 0px 0px 0px rgba(255,255,255,0.15);
  -moz-box-shadow:0px 0px 0px 0px rgba(255,255,255,0.15);
  box-shadow:0px 0px 0px 0px rgba(255,255,255,0.15);
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -o-transition:all .3s;
  transition:all .3s;
}
[class*="entypo-"]:before {
  position:absolute;
  font-family: 'entypo', sans-serif;
}
figure[class*="entypo-"]:before {
  left:10px;
  top:5px;
  font-size:2rem;
  color:rgba(255,255,255,0);
  z-index:1;
  -webkit-transition:color .1s;
  -moz-transition:color .1s;
  -o-transition:color .1s;
  transition:color .1s;
}
a[class*="entypo-"]:before {
  top:8px;
  left:9px;
  font-size:1.5rem;
  color:white;
}
a:hover[class*="entypo-"]:before {
  color:white;
}
figure, figure img, figcaption {
  position:absolute;
  top:0;
  right:0;
}
figure {
  bottom:0;
  left:0;
  width:600px;
  height:300px;
  display:block;
  overflow:hidden;
}
figure img {
  bottom:0;
  left:0;
  display:block;
  width:600px;
  height:300px;
  z-index:1;
  -webkit-transform:translateX(600px);
  -moz-transform:translateX(600px);
  -ms-transform:translateX(600px);
  -o-transform:translateX(600px);
  transform:translateX(600px);
  -webkit-transition:all .15s .15s, z-index 0s;
  -moz-transition:all .15s .15s, z-index 0s;
  -o-transition:all .15s .15s, z-index 0s;
  transition:all .15s .15s, z-index 0s;
}
figcaption {
  display:block;
  width:270px;
  height:300px;
  padding-top:20px;
  background-image:radial-gradient(rgba( 255,255,255,0.3), transparent);
  background-size:600px 600px;
  background-repeat:no-repeat;
  background-position:-300px -150px;
  text-align:center;
  z-index:3;
  -webkit-box-shadow:-5px 0px 20px rgba(0,0,0,0.1);
  -moz-box-shadow:-5px 0px 20px rgba(0,0,0,0.1);
  box-shadow:-5px 0px 20px rgba(0,0,0,0.1);
  -webkit-transform:translateX(300px);
  -moz-transform:translateX(300px);
  -ms-transform:translateX(300px);
  -o-transform:translateX(300px);
  transform:translateX(300px);
  -webkit-transition:all .35s;
  -moz-transition:all .35s;
  -o-transition:all .35s;
  transition:all .35s;
}
h4 {
  display:inline-block;
  padding:0 15px;
  color:white;
  font-family: 'Titillium Web', sans-serif;
  font-weight:300;
  font-size:2rem;
}
figcaption nav ul {display:block;padding-top:10px;}
figcaption nav ul li {display:inline-block;margin-left:5px;}
figcaption nav ul li a {
  position:relative;
  display:block;
  width:40px;
  height:40px;
  background:rgba(255,255,255,0.2);
  text-decoration:none;
  color:white;
  -webkit-border-radius:50%;
  -moz-border-radius:50%;
  border-radius:50%;
  -webkit-box-shadow:inset 0px 0px 0px 0px rgba(255,255,255,0);
  -moz-box-shadow:inset 0px 0px 0px 0px rgba(255,255,255,0);
  box-shadow:inset 0px 0px 0px 0px rgba(255,255,255,0);
  -webkit-transition:all .15s;
  -moz-transition:all .15s;
  -o-transition:all .15s;
  transition:all .15s;
}
figcaption nav ul li a:hover {
  background:rgba(255,255,255,0);
  -webkit-box-shadow:inset 0px 0px 0px 2px rgba(255,255,255,1);
  -moz-box-shadow:inset 0px 0px 0px 2px rgba(255,255,255,1);
  box-shadow:inset 0px 0px 0px 2px rgba(255,255,255,1);
}
figcaption p {
  padding:50px 15px;
  font-family:'Titillium Web', sans-serif;
  font-weight:300;
  color:#333;
  background-image:-webkit-gradient(linear, 0 0, 0 100%, from(rgba(255,255,255,0.35)), color-stop(0.3, rgba(255,255,255,0.35)), color-stop(0.3, transparent), color-stop(0.7, transparent), color-stop(0.7, rgba(255,255,255,0.35)), to(rgba(255,255,255,0.35)));
  background-image:-webkit-linear-gradient(rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.35) 30%, transparent 30%, transparent 70%, rgba(255,255,255,0.35) 70%, rgba(255,255,255,0.35) 100%);
  background-image:-moz-linear-gradient(rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.35) 30%, transparent 30%, transparent 70%, rgba(255,255,255,0.35) 70%, rgba(255,255,255,0.35) 100%);
  background-image:-o-linear-gradient(rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.35) 30%, transparent 30%, transparent 70%, rgba(255,255,255,0.35) 70%, rgba(255,255,255,0.35) 100%);
  background-image:linear-gradient(rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.35) 30%, transparent 30%, transparent 70%, rgba(255,255,255,0.35) 70%, rgba(255,255,255,0.35) 100%);
  background-size:1px 100%;
  background-repeat:no-repeat;
  background-position:50% 0%;
}
input[type="radio"]:hover + label {
  background:rgba(255,255,255,0.6);
}
input[type="radio"]:checked + label {
  background:rgba(255,255,255,1);
  -webkit-box-shadow:0px 0px 0px 5px rgba(255,255,255,0.3);
  -moz-box-shadow:0px 0px 0px 5px rgba(255,255,255,0.3);
  box-shadow:0px 0px 0px 5px rgba(255,255,255,0.3);
}
input[type="radio"]:checked + label:before {}
input[type="radio"]:checked ~ figure img {
  z-index:2;
  -webkit-transform:translatex(0px);
  -moz-transform:translatex(0px);
  -ms-transform:translatex(0px);
  -o-transform:translatex(0px);
  transform:translatex(0px);
  -webkit-transition:all .15s, z-index 0s;
  -moz-transition:all .15s, z-index 0s;
  -o-transition:all .15s, z-index 0s;
  transition:all .15s, z-index 0s;
}
input[type="radio"]:checked ~ figure[class*="entypo-"]:before {
  z-index:3;
  color:rgba(255,255,255,0.5);
  -webkit-transition:color .5s;
  -moz-transition:color .5s;
  -o-transition:color .5s;
  transition:color .5s;
}
input[type="radio"]:checked ~ figure figcaption {
  z-index:8;
  -webkit-transform:translateX(0px);
  -moz-transform:translateX(0px);
  -ms-transform:translateX(0px);
  -o-transform:translateX(0px);
  transform:translateX(0px);
  -webkit-transition:all .35s, .7s;
  -moz-transition:all .35s, .7s;
  -o-transition:all .35s, .7s;
  transition:all .35s, .7s;
}
h2 {
  margin-top:150px;
  text-align:center;
  font-family: 'Titillium Web', sans-serif;
  font-weight:300;
  font-size:1.2rem;
}
h2 a {
  position:relative;
  color:tomato;
  text-decoration:none;
}
h2 a:after {
  content:'';
  position:absolute;
  bottom:-2px;
  left:0;
  width:0;
  height:1px;
  background:tomato;
  -webkit-transition:width .1s;
  -moz-transition:width .1s;
  -o-transition:width .1s;
  transition:width .1s;
}
h2 a:hover:after {
  width:100%;
}
body {background:#f0f0f0;}
html, body {
  width:100%;
  height:100%;
}
Nex step is
Go to Blog Title→ Layout →Add Widget→ Html/JavaScript. Past the Below Code..
<div id="gal">  <nav class="galnav">    <ul>      <li>        <input type="radio" name="btn" value="one" checked="checked"/>        <label for="btn"></label>        <figure>          <img src="https://dl.dropboxusercontent.com/u/330966/static/iphone6infinity/new/01_Fabio_Basile.jpg"/>          <figcaption>            <h4>Fabio Basile</h4>              <nav role='navigation'>                <p>iPhone 6 Infinity</p>                <ul>                  <li><a href="http://dribbble.com/toxinide" class="entypo-dribbble"></a></li>                  <li><a href="https://twitter.com/fffabs" class="entypo-twitter"></a></li>                </ul>              </nav>            </figcaption>        </figure>      </li>      <li>        <input type="radio" name="btn" value="two"/>        <label for="btn"></label>         <figure class="entypo-forward">          <img src="https://dl.dropboxusercontent.com/u/330966/static/iphone6infinity/new/08_Brian_Miller.jpg"/>          <figcaption>            <h4>Brian Miller</h4>              <nav role='navigation'>                <p>TypeTi.me</p>                <ul>                  <li><a href="http://dribbble.com/BMDG" class="entypo-dribbble"></a></li>                  <li><a href="https://twitter.com/BMDG" class="entypo-twitter"></a></li>                </ul>              </nav>            </figcaption>        </figure>      </li>      <li>        <input type="radio" name="btn" value="three"/>        <label for="btn"></label>        <figure class="entypo-forward">          <img src="https://dl.dropboxusercontent.com/u/330966/static/iphone6infinity/new/05_Nicolas_Quod.jpg"/>          <figcaption>            <h4>Nicolas Quod</h4>              <nav role='navigation'>                <p>Iphone 6 - Notification - iOS 7</p>                <ul>                  <li><a href="http://dribbble.com/NicolasQuod" class="entypo-dribbble"></a></li>                  <li><a href="https://twitter.com/@NicolasQuod" class="entypo-twitter"></a></li>                </ul>              </nav>            </figcaption>        </figure>      </li>      <li>        <input type="radio" name="btn" value="four"/>        <label for="btn"></label>         <figure class="entypo-forward">          <img src="https://dl.dropboxusercontent.com/u/330966/static/iphone6infinity/new/04_Joffrey.jpg"/>          <figcaption>            <h4>Joffrey</h4>              <nav role='navigation'>                <p>▽</p>                <ul>                  <li><a href="http://dribbble.com/joffrey" class="entypo-dribbble"></a></li>                  <li><a href="https://twitter.com/joffrey" class="entypo-twitter"></a></li>                </ul>              </nav>            </figcaption>        </figure>      </li>      <li>        <input type="radio" name="btn" value="five"/>        <label for="btn"></label>         <figure class="entypo-forward">          <img src="https://dl.dropboxusercontent.com/u/330966/static/iphone6infinity/new/09_Jared_Long.jpg"/>          <figcaption>            <h4>Jared Long</h4>              <nav role='navigation'>                <p>Don't drop your iPhone Infinity</p>                <ul>                  <li><a href="http://dribbble.com/designmylife" class="entypo-dribbble"></a></li>                  <li><a href="http://www.behance.net/designmylife" class="entypo-behance"></a></li>                </ul>              </nav>            </figcaption>        </figure>      </li>      <li>        <input type="radio" name="btn" value="six"/>        <label for="btn"></label>         <figure class="entypo-forward">          <img src="https://dl.dropboxusercontent.com/u/330966/static/iphone6infinity/new/02_Charles_Treece.jpg"/>          <figcaption>            <h4>Charles Treece</h4>              <nav role='navigation'>                <p>iPhone 6 Infinity Side Status Bar</p>                <ul>                  <li><a href="http://dribbble.com/CharlesTreece" class="entypo-dribbble"></a></li>                  <li><a href="https://twitter.com/CharlesTreece" class="entypo-twitter"></a></li>                </ul>              </nav>            </figcaption>        </figure>      </li>    </ul>  </nav></div>
      
Now you are Done. Thank you for visiting pro blog world.
Your comments makes us so happy.  
Read more

Friday, January 15, 2016

How to Add a Numbered Pagination in Blogger blog

Add a Numbered Pagination in Blogger

In blogger there is option to show limited number of posts on blogger home page. When doing so Normally blogger shows a two-link Older / Newer or Previous / Next navigation to browse through the index. 
But this is typical way to navigate to older posts with these links. You must seen modern, stylish and beautiful numbered navigation on several blogs, websites and mostly on wordpress.

Numbered Paged Navigation or Numbered Pagination menu is modern and inspiring way to make visitors navigate posts easily through the index on your blogger blog. 

If you are wondering how to add add Numbered Pagination to blogger?. This tutorial post will answer your question in all possible ways.

DEMO DISPLAY:Here is a demo display to preview how it looks.

Installing Number Pagination In blogger


CSS:Adding the styles

Open blogger> Templates> Edit HTML and paste the given css code just before
]]> </ b: skin>. and save template

.blog-pager,#blog-pager{font-family:"oswald", serif;font-weight:normal;font-size:12px;width:700px;padding:17px;} 
.showpageNum a,.showpage a {background:#163a5e; color:#FFF; margin-right:.6em;text-decoration:none;font-size:15px;line-height:0;text-align:center;padding:12px 18px 12px;} 
.showpageNum a:hover,.showpage a:hover {background:#c03426; color:#FFF; margin-right:.6em;text-decoration:none;font-size:15px;font-style:italic;line-height:0;text-align:center;padding:12px 18px 12px;}
.showpageOf{margin:0 8px 0 0;font-family:'Coming Soon', cursive;text-decoration:none;font-size:100%;}
.showpagePoint {background:#fba783; color:#FFF; margin-right:.6em;text-decoration:none;font-size:15px;font-style:italic;line-height:0;text-align:center;padding:12px 18px 12px;}

Adding JavaScript:

Open blogger>Template Edit HTML and past the below javascript code just before </body>. and save template.


<script type="text/javascript">;
var home_page=&#39;/&#39;;
var urlactivepage=location.href;
var postperpage=4;
var numshowpage=4;
var upPageWord =&#39;Prev&#39;;
var downPageWord =&#39;Next&#39;;
</script>
<script type="text/javascript">
//<![CDATA[
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('6 I;6 i;6 f;6 n;1f();C 1g(15){6 5=\'\';J=K(N/2);4(J==N-J){N=J*2+1}A=f-J;4(A<1)A=1;d=K(15/j)+1;4(d-1==15/j)d=d-1;D=A+N-1;4(D>d)D=d;5+="<3 7=\'1A\'>1B "+f+\' 1C \'+d+"</3>";6 16=K(f)-1;4(f>1){4(f==2){4(i=="o"){5+=\'<3 7="1D"><a 9="\'+B+\'">\'+O+\'</a></3>\'}b{5+=\'<3 7="g"><a 9="/r/s/\'+n+\'?&c-k=\'+j+\'">\'+O+\'</a></3>\'}}b{4(i=="o"){5+=\'<3 7="g"><a 9="#" v="L(\'+16+\');w x">\'+O+\'</a></3>\'}b{5+=\'<3 7="g"><a 9="#" v="M(\'+16+\');w x">\'+O+\'</a></3>\'}}}4(A>1){4(i=="o"){5+=\'<3 7="g"><a 9="\'+B+\'">1</a></3>\'}b{5+=\'<3 7="g"><a 9="/r/s/\'+n+\'?&c-k=\'+j+\'">1</a></3>\'}}4(A>2){5+=\' ...    \'}1h(6 l=A;l<=D;l++){4(f==l){5+=\'<3 7="1E">\'+l+\'</3>\'}b 4(l==1){4(i=="o"){5+=\'<3 7="g"><a 9="\'+B+\'">1</a></3>\'}b{5+=\'<3 7="g"><a 9="/r/s/\'+n+\'?&c-k=\'+j+\'">1</a></3>\'}}b{4(i=="o"){5+=\'<3 7="g"><a 9="#" v="L(\'+l+\');w x">\'+l+\'</a></3>\'}b{5+=\'<3 7="g"><a 9="#" v="M(\'+l+\');w x">\'+l+\'</a></3>\'}}}4(D<d-1){5+=\' ...  \'}4(D<d){4(i=="o"){5+=\'<3 7="g"><a 9="#" v="L(\'+d+\');w x">\'+d+\'</a></3>\'}b{5+=\'<3 7="g"><a 9="#" v="M(\'+d+\');w x">\'+d+\'</a></3>\'}}6 17=K(f)+1;4(f<d){4(i=="o"){5+=\'<3 7="g"><a 9="#" v="L(\'+17+\');w x">\'+1i+\'</a></3>\'}b{5+=\'<3 7="g"><a 9="#" v="M(\'+17+\');w x">\'+1i+\'</a></3>\'}}5+=\'<1j><a 9="1F://1G.1H-1k.1I" 1J="1K-1L: 1M; 1N: 1O; 1P: 1Q;" 1R="1S">1T 1U 1V-1k</a></1j>\';6 E=y.1W("E");6 18=y.1X("1Y-1Z");1h(6 p=0;p<E.P;p++){E[p].1l=5}4(E&&E.P>0){5=\'\'}4(18){18.1l=5}}C 1a(Q){6 R=Q.R;6 1m=K(R.21$22.$t,10);1g(1m)}C 1f(){6 h=u;4(h.e("/r/s/")!=-1){4(h.e("?S-c")!=-1){n=h.F(h.e("/r/s/")+14,h.e("?S-c"))}b{n=h.F(h.e("/r/s/")+14,h.e("?&c"))}}4(h.e("?q=")==-1&&h.e(".5")==-1){4(h.e("/r/s/")==-1){i="o";4(u.e("#G=")!=-1){f=u.F(u.e("#G=")+8,u.P)}b{f=1}y.1n("<m T=\\""+B+"U/V/W?c-k=1&X=Y-Z-m&11=1a\\"><\\/m>")}b{i="s";4(h.e("&c-k=")==-1){j=20}4(u.e("#G=")!=-1){f=u.F(u.e("#G=")+8,u.P)}b{f=1}y.1n(\'<m T="\'+B+\'U/V/W/-/\'+n+\'?X=Y-Z-m&11=1a&c-k=1" ><\\/m>\')}}}C L(H){12=(H-1)*j;I=H;6 13=y.1o(\'1p\')[0];6 z=y.1q(\'m\');z.1r=\'1s/1t\';z.1u("T",B+"U/V/W?1v-1w="+12+"&c-k=1&X=Y-Z-m&11=1b");13.1x(z)}C M(H){12=(H-1)*j;I=H;6 13=y.1o(\'1p\')[0];6 z=y.1q(\'m\');z.1r=\'1s/1t\';z.1u("T",B+"U/V/W/-/"+n+"?1v-1w="+12+"&c-k=1&X=Y-Z-m&11=1b");13.1x(z)}C 1b(Q){1c=Q.R.24[0];6 1y=1c.1z.$t.F(0,19)+1c.1z.$t.F(23,25);6 1d=26(1y);4(i=="o"){6 1e="/r?S-c="+1d+"&c-k="+j+"#G="+I}b{6 1e="/r/s/"+n+"?S-c="+1d+"&c-k="+j+"#G="+I}27.9=1e}',62,132,'|||span|if|html|var|class||href||else|max|maksimal|indexOf|nomerhal|showpageNum|thisUrl|jenis|postperpage|results|jj|script|lblname1|page|||search|label||urlactivepage|onclick|return|false|document|newInclude|mulai|home_page|function|akhir|pageArea|substring|PageNo|numberpage|nopage|nomerkiri|parseInt|redirectpage|redirectlabel|numshowpage|upPageWord|length|root|feed|updated|src|feeds|posts|summary|alt|json|in||callback|jsonstart|nBody||banyakdata|prevnomer|nextnomer|blogPager||hitungtotaldata|finddatepost|post|timestamp|alamat|halamanblogger|loophalaman|for|downPageWord|div||innerHTML|totaldata|write|getElementsByTagName|head|createElement|type|text|javascript|setAttribute|start|index|appendChild|timestamp1|published|showpageOf|Page|of|showpage|showpagePoint|http||||style|font|size|0pt|float|right|margin|0px||||||getElementsByName|getElementById|blog|pager||openSearch|totalResults||entry|29|encodeURIComponent|location'.split('|'),0,{}))
//]]>
</script>

Final Step:

After adding all the above codes save your template to deploy the changes. Done! Now preview your blog and see the numbered pagination in action.

If you got stuck anywhere following the tutorial, please post your query in the comments – I’ll try best to figure it out for you.

Read more

Tuesday, January 5, 2016

Add Simple Pre code Highlighter with Selector in Blogger post

Add-Simple-Pre-code-Highlighter-in-Blogger-post
Add Simple Pre code Highlighter with Selector in Blogger post

Writing codes in blogger post are little tricky. But don't worry blogger logics presents a beautiful tool to write codes in blogger post. Add simple pre code Highlighter with selecting option to your blogger blog, It enables visitors to copy the source code as a text.
In an HTML document, the pre element represents preformatted text. This means your tab indents, double-spaces, newlines, and other typographic formatting will be preserved inside a pre element.
By default, browsers will display the content inside a pre element using a monospaced (or fixed-width) font such as Courier or Monaco. This is typical when displaying code, which, as we’ll see, is one of the primary uses for the pre element.

DEMO DISPLAY:


This For my frienda who often share blogger tutorial course, already familiar with the application of good code HTML, CSS, JavaScript or jQuery in the posting.And as a container for applying the codes on the post, my friend need to wrap each code with pre tags.

Please follow the below steps.

1-Header stuff:

Edit your blogger template. and add the below code just above the </head>.

<script src="http://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script> <script src="http://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script>

2-CSS

To install simple pre code with highlighting. Open blogger> Templates> Edit HTML and apply the code below right before the </ style> or]]> </ b: skin>


/* CSS Simple Pre Code */
pre {
background: #ffffff;
white-space: pre;
word-wrap: break-word;
overflow: auto;
}

pre.code {
margin: 20px 25px;
border: 1px solid #d9d9d9;
border-radius: 2px;
position: relative;
box-shadow: 0 1px 1px rgba(0,0,0,.08);
}

pre.code label {
font-family: sans-serif;
font-weight: normal;
font-size: 13px;
color: #444;
position: absolute;
left: 1px;
top: 16px;
text-align: center;
width: 60px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
pointer-events: none;
}

pre.code code {
font-family: "Inconsolata","Monaco","Consolas","Andale Mono","Bitstream Vera Sans Mono","Courier New",Courier,monospace;
display: block;
margin: 0 0 0 60px;
padding: 15px 16px 14px;
border-left: 1px solid #d9d9d9;
overflow-x: auto;
font-size: 13px;
line-height: 19px;
color: #444;
}

pre::after {
content: "double click to selection";
padding: 0;
width: auto;
height: auto;
position: absolute;
right: 18px;
top: 14px;
font-size: 12px;
color: #aaa;
line-height: 20px;
overflow: hidden;
-webkit-backface-visibility: hidden;
transition: all 0.3s ease;
}

pre:hover::after {
opacity: 0;
visibility: visible;
}

pre.code-css code {
color: #0288d1;
}

pre.code-html code {
color: #558b2f;
}

pre.code-javascript code {
color: #f57c00;
}

pre.code-jquery code {
color: #78909c;
}

3-JavaScript

Copy and paste the following code just above </body>

<script> $('i[rel="pre"]').replaceWith(function() { return $('<pre><code>' + $(this).html() + '</code></pre>'); }); var pres = document.querySelectorAll('pre,kbd,blockquote'); for (var i = 0; i <pres.length/>; i++) { pres[i].addEventListener("dblclick", function () { var selection = getSelection(); var range = document.createRange(); range.selectNodeContents(this); selection.removeAllRanges(); selection.addRange(range); }, false); } </script>

Conculusion: 

Writing codes in posts are so easy with "Write Codes in Simple Pre Code with selector"
Now finally you are done. I hope you liked the Simple Pre Code. For your suggestions and questions please comment. Thank you.


Read more

Sunday, January 3, 2016

Add CSS3 Drop Down Navigation Menu with Effects to Blogger

Add_CSS3_Drop_Down_Navigation_Menu_with_Effects_to_Blogger
Add CSS3 Drop Down Navigation Menu with Effects to Blogger
Well first of all Happy new year to all of my sweet visitors For now I am going to share beautiful CSS designed drop down menu for blogger. Navigation menu have great impact in blogger design. A good navigation means you drive your visitors easily for what they are looking on your site. We all are here try to present different ideas and views regarding blogging.

A navigation bar (or navigation system) is a section of a graphical user interface intended to aid visitors in accessing information. Navigation bars are implemented in file browsers, web browsers and as a design element of some web sites.

DEMO DISPLAY
I have attached live demo for navigation menu for better understanding your needs. 

Also check: LAVA LAMP CSS DROP DOWN MENU FOR BLOGGER!

Lets start adding this beautiful css3 designed drop down menu to blogger. Please follow the below steps. We will first add css code and then html.

CSS:

For adding css to blogger>Template>Edit HTML> and past the given code just before  ]]></b:skin>
.

span.dropBottom,span.dropRight {
 display: block;
 box-shadow:inset 2px 0px 0px #FF9;
 position: absolute;
 left: 0px;
 width:100%;
 height: 100%;
 top: 0px;
}
span.dropBottom {
 box-shadow:inset 0px 2px 0px #FF9;
 position: absolute;
 width: 100%;
 bottom: 0px;
}
h1 {
 color:#EDEDED;
  text-align:center;
  font-family: 'Open Sans', sans-serif;
  
}
nav {
 display:table;
 margin:50px auto;
  box-shadow:0px 2px 0px #023333;
}
ul {
 margin:0;
 padding:0;
 list-style:none;
}

ul ul {
 opacity:0;
 position:absolute;
 top:160%;
 visibility:hidden;
 transition:all .4s ease;
 -webkit-transition:all .4s ease;
}
ul ul ul {
 top:0%;
 left:160%;
}
ul ul li:hover > ul {
 top:0%;
 left:100%;
 opacity:1;
 visibility:visible;
}
ul li:hover > ul {
 opacity:1;
 top:100%;
 visibility:visible;
}
ul li {
 float:left;
 position:relative;
}
ul ul li {
 float:none;
}
ul li {
 background-color:#009C75;
 cursor: pointer;
}
ul a {
 text-decoration:none;
 display:block;
 color:#FF9;
 padding:10px 15px;
 width:6em;
 text-align:center;
  font-family: 'Open Sans', sans-serif;
  text-shadow: 0px -1px 0px rgba(0,0,0,.2);
}
ul li:hover {
 background-color:#007373;
}
ul li a:hover {
 background-color:#007373;
}

Save template. 

HTML:

'HTML Copy the following HTML code and paste in your header section of your blogger blog. Or any where you want this to appear on your blog.

<nav><code>
    <ul>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Home</a></li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Tutorials</a><span class="dropBottom"></span>
            <ul>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Design</a><span class="dropRight"></span>
                    <ul>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Photoshop</a></li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Illustrator</a></li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Web Design</a><span class="dropRight"></span>
                            <ul>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">XTHML</a></li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">CSS</a></li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">JavaScript</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Articles</a></li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Interviews</a></li>
</ul>
</li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">About</a></li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Contact</a></li>
</ul>
</code></nav><br />
<code><nav>    <ul>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Home</a></li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Tutorials</a><span class="dropBottom"></span>
            <ul>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Design</a><span class="dropRight"></span>
                    <ul>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Photoshop</a></li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Illustrator</a></li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Web Design</a><span class="dropRight"></span>
                            <ul>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">XTHML</a></li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">CSS</a></li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">JavaScript</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Articles</a></li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Interviews</a></li>
</ul>
</li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">About</a></li>
<li><a href="https://www.blogger.com/blogger.g?blogID=7413953502747285846#">Contact</a></li>
</ul>
</nav>
save template.


Conclusion:

 Thats all you have done. I hope you will found this menu looking cool and working. we have selected this css3 drop down menu for specially for blogger user. Its simple and SEO friendly. It delivers good appearance to blogger blog. Thank You!
Read more

Monday, December 28, 2015

3 Unique Animated Social Media Icons Widgets for Blogger

3 Unique Animated Social Media Icons Widgets for Blogger

Social media are the websites and applications that enable users to create and share content or to participate in social networking. Social media have great impact on blogger traffic. To make sure visitors could reach you through social media sites. Your blog and website should installed inspiring social media icons widget.
Well today I am going to share 3 different CSS3 designed social widgets.
How to add social media icons to blogger? 
Of course adding social media icons to blogger is so easy. This tutorial will help out visitors installing icons. Please follow the below steps.
DEMO DISPLAY


1-Adding Combine CSS:

First of all add the following CSS codes to your blogger skin or template.To install CSS code open blogger> Templates> Edit HTML and past the below below CSS code right before the
]]> </ b: skin>

.social {
margin: 0.6rem;
-webkit-transition: 0.5s ease;
transition: 0.5s ease;
height: 15vw;
width: 15vw;
max-width: 4rem;
max-height: 4rem;
display: inline-block;
}
.social:hover {
cursor: pointer;
border-radius: 0;
}
.social svg {
height: 100%;
width: 100%;
fill: white;
}

.round {
border-radius: 50%;
}

.rounded {
border-radius: 20%;
}

[aria-label="twitter"] {
background-color: #55acee;
}
[aria-label="twitter"]:focus, [aria-label="twitter"]:hover {
background: #2795e9;
}

[aria-label="facebook"] {
background-color: #3b5998;
}
[aria-label="facebook"]:focus, [aria-label="facebook"]:hover {
background: #2d4373;
}

[aria-label="google plus"] {
background-color: #dd4b39;
}
[aria-label="google plus"]:focus, [aria-label="google plus"]:hover {
background: #c23321;
}

[aria-label="linkedin"] {
background-color: #007bb6;
}
[aria-label="linkedin"]:focus, [aria-label="linkedin"]:hover {
background: #005983;
}

[aria-label="github"] {
background-color: #383940;
}
[aria-label="github"]:focus, [aria-label="github"]:hover {
background: #202125;
}

[aria-label="dribbble"] {
background-color: #ea4c89;
}
[aria-label="dribbble"]:focus, [aria-label="dribbble"]:hover {
background: #e51e6b;
}

[aria-label="behance"] {
background-color: #1769ff;
}
[aria-label="behance"]:focus, [aria-label="behance"]:hover {
background: #0050e3;
}

[aria-label="codepen"] {
background-color: #383940;
}
[aria-label="codepen"]:focus, [aria-label="codepen"]:hover {
background: #202125;
}

[aria-label="instagram"] {
background-color: #3f729b;
}
[aria-label="instagram"]:focus, [aria-label="instagram"]:hover {
background: #305777;
}

[aria-label="pinterest"] {
background-color: #bd081c;
}
[aria-label="pinterest"]:focus, [aria-label="pinterest"]:hover {
background: #8c0615;
}

[aria-label="medium"] {
background-color: #383940;
}
[aria-label="medium"]:focus, [aria-label="medium"]:hover {
background: #202125;
}

[aria-label="vine"] {
background-color: #00B289;
}
[aria-label="vine"]:focus, [aria-label="vine"]:hover {
background: #007f62;
}

[aria-label="tumblr"] {
background-color: #36465D;
}
[aria-label="tumblr"]:focus, [aria-label="tumblr"]:hover {
background: #232e3d;
}

[aria-label="youtube"] {
background-color: #cd201f;
}
[aria-label="youtube"]:focus, [aria-label="youtube"]:hover {
background: #a11918;
}

.no-bg .social {
background-color: transparent !important;
margin: 0;
}
.no-bg [aria-label="twitter"] svg {
fill: #55acee;
}
.no-bg [aria-label="twitter"]:focus svg, .no-bg [aria-label="twitter"]:hover svg {
fill: #2795e9;
}
.no-bg [aria-label="facebook"] svg {
fill: #3b5998;
}
.no-bg [aria-label="facebook"]:focus svg, .no-bg [aria-label="facebook"]:hover svg {
fill: #2d4373;
}
.no-bg [aria-label="google plus"] svg {
fill: #dd4b39;
}
.no-bg [aria-label="google plus"]:focus svg, .no-bg [aria-label="google plus"]:hover svg {
fill: #c23321;
}
.no-bg [aria-label="linkedin"] svg {
fill: #007bb6;
}
.no-bg [aria-label="linkedin"]:focus svg, .no-bg [aria-label="linkedin"]:hover svg {
fill: #005983;
}
.no-bg [aria-label="github"] svg {
fill: #383940;
}
.no-bg [aria-label="github"]:focus svg, .no-bg [aria-label="github"]:hover svg {
fill: #202125;
}
.no-bg [aria-label="dribbble"] svg {
fill: #ea4c89;
}
.no-bg [aria-label="dribbble"]:focus svg, .no-bg [aria-label="dribbble"]:hover svg {
fill: #e51e6b;
}
.no-bg [aria-label="behance"] svg {
fill: #1769ff;
}
.no-bg [aria-label="behance"]:focus svg, .no-bg [aria-label="behance"]:hover svg {
fill: #0050e3;
}
.no-bg [aria-label="codepen"] svg {
fill: #383940;
}
.no-bg [aria-label="codepen"]:focus svg, .no-bg [aria-label="codepen"]:hover svg {
fill: #202125;
}
.no-bg [aria-label="instagram"] svg {
fill: #3f729b;
}
.no-bg [aria-label="instagram"]:focus svg, .no-bg [aria-label="instagram"]:hover svg {
fill: #305777;
}
.no-bg [aria-label="pinterest"] svg {
fill: #bd081c;
}
.no-bg [aria-label="pinterest"]:focus svg, .no-bg [aria-label="pinterest"]:hover svg {
fill: #8c0615;
}
.no-bg [aria-label="medium"] svg {
fill: #383940;
}
.no-bg [aria-label="medium"]:focus svg, .no-bg [aria-label="medium"]:hover svg {
fill: #202125;
}
.no-bg [aria-label="vine"] svg {
fill: #00B289;
}
.no-bg [aria-label="vine"]:focus svg, .no-bg [aria-label="vine"]:hover svg {
fill: #007f62;
}
.no-bg [aria-label="tumblr"] svg {
fill: #36465D;
}
.no-bg [aria-label="tumblr"]:focus svg, .no-bg [aria-label="tumblr"]:hover svg {
fill: #232e3d;
}
.no-bg [aria-label="youtube"] svg {
fill: #cd201f;
}
.no-bg [aria-label="youtube"]:focus svg, .no-bg [aria-label="youtube"]:hover svg {
fill: #a11918;
}

body {
padding: 1.5vw;
text-align: center;
font-size: 0;
margin: 0 auto;
max-width: 80rem;
}

p {
color: #383940;
font-size: 1rem;
font-family: Sans-serif;
}
p a {
text-decoration: none;
color: #55acee;
}
Save template. 
Note:The above CSS code is valid for all type of given social widgets.


2-Header stuff:

Add the following javacript code into your blogger header section. Go to blogger>Template>Edit Html> and past the Javascript code just befor </head>

/*
https://github.com/larsenwork/social.svg.min
*/

function solidToggle(event) {
event.preventDefault()
var body = document.getElementsByTagName('body')[0]
body.classList.toggle('no-bg')
}
save template.

3:Adding Social media icons Widgets to blogger

In this step we will give you html code of three different animated social icons widgets, simply add HTML code into your desired blogger template area.
You can add the social media icons widget into the sidebar by clicking on Layout and then clicking to Add a Gadget in the sidebar area. Choose the HTML/Javascript gadget from the list and paste your code into the widget.
Note: here are three different HTML Codes are given with respective widget screen shots. Add of your desired style widget. 

A-Animated Flat Ui social media icons:

Flat Ui social media icons
Screen Shot-Animated Flat UI social media icons widget

HTML
<a href="URL" class="social" aria-label="facebook">
<svg viewbox="0 0 800 800" role="img">
<path d="M445 643h-90V419h-75v-87h75v-64c0-75 45-115 112-115 37 0 67 3 67 3v78h-46c-36 0-43 18-43 43v55h86l-11 87h-75v224z"/>
</svg>
</a>

<a href="URL" class="social" aria-label="twitter">
<svg viewbox="0 0 800 800" role="img">
<path d="M679 239s-21 34-55 57c7 156-107 329-314 329-103 0-169-50-169-50s81 17 163-45c-83-5-103-77-103-77s23 6 50-2c-93-23-89-110-89-110s23 14 50 14c-84-65-34-148-34-148s76 107 228 116c-22-121 117-177 188-101 37-6 71-27 71-27s-12 41-49 61c30-2 63-17 63-17z"/>
</svg>
</a>

<a href="URL" class="social" aria-label="google plus">
<svg viewbox="0 0 800 800" role="img">
<path d="M487 370c21 129-62 237-195 237-114 0-207-93-207-207s93-207 207-207c89 0 138 54 138 54l-56 54s-29-32-82-32c-71 0-128 59-128 131 0 73 57 131 128 131 81 0 113-58 117-90H292v-71h195zm189-59v59h59v60h-59v59h-59v-59h-59v-60h59v-59h59z"/>
</svg>
</a>

<a href="URL" class="social" aria-label="linkedin">
<svg viewbox="0 0 800 800" role="img">
<path d="M268 629h-97V319h97v310zm157 0h-97V319h93v42h1c13-24 44-50 91-50 98 0 116 64 116 148v170h-96V478c0-36-2-82-51-82-50 0-57 39-57 79v154zM220 164c31 0 55 25 55 56s-24 56-55 56-56-25-56-56 25-56 56-56z"/>
</svg>
</a>

B-Round Animated Social media icons widgets:

Round Animated Social media icons widgets
Screen Shot Round Animated Social media icons widgets
HTML

<a href='URL' class="social round" aria-label="github">
<svg viewbox="0 0 800 800" role="img">
<path d="M400 139c144 0 260 116 260 260 0 115-75 213-178 247-9 3-17-2-17-13v-71c0-35-18-48-18-48 57-6 119-28 119-128 0-44-27-70-27-70s14-29-2-69c0 0-22-7-72 27-42-12-88-12-130 0-50-34-72-27-72-27-16 40-2 69-2 69s-27 26-27 70c0 100 62 122 119 128 0 0-14 10-17 35-15 7-53 18-76-22 0 0-13-25-39-27 0 0-26 0-2 16 0 0 17 8 29 38 0 0 16 51 88 35v44c0 11-9 16-18 13-103-34-178-132-178-247 0-144 116-260 260-260z"/>
</svg>
</a>

<a href='URL' class="social round" aria-label="dribbble">
<svg viewbox="0 0 800 800" role="img">
<path d="M400 665c-146 0-265-119-265-265s119-265 265-265 265 119 265 265-119 265-265 265zm223-229s-69-22-140-9c30 81 43 161 43 161s82-49 97-152zM488 609s-15-90-48-172c-132 44-179 142-179 142s96 83 227 30zm-256-57c80-128 193-152 193-152s-12-27-19-39c-124 37-232 32-232 32s-8 87 58 159zm-54-198s102 2 210-28c-38-71-84-130-84-130-107 49-126 158-126 158zm169-174s50 65 85 134c84-31 118-83 118-83s-76-78-203-51zm102 167c6 11 20 44 20 44s64-11 157 7c0-85-51-141-51-141s-38 55-126 90z"/>
</svg>
</a>

<a href='URL' class="social round" aria-label="behance">
<svg viewbox="0 0 800 800" role="img">
<path d="M569 532c28 0 49-15 56-33h62c-17 55-55 86-120 86-79 0-132-53-132-135 0-80 57-136 132-136 81 0 130 66 125 153H506c1 41 21 65 63 65zm-282 46H115V224h167c67 0 114 20 114 87 0 40-19 60-48 74 40 11 64 41 64 90 0 72-58 103-125 103zm-10-60c34 0 57-12 57-47 0-36-21-51-56-51h-85v98h84zm288-151c-34 0-57 22-59 55h115c-4-34-21-55-56-55zm-293 0c28 0 48-13 48-42 0-31-23-41-54-41h-73v83h79zm364-120v35H492v-35h144z"/>
</svg>
</a>

<a href='URL' class="social round" aria-label="codepen">
<svg viewbox="0 0 800 800" role="img">
<path d="M140 482V320c0-9 5-15 10-18l238-158c8-5 16-5 24 0l238 158c6.24 3.743 10 12 10 19v158c0 9-5 15-10 19L412 656c-8 5-17 5-24 0L150 497c-9-6-10-11-10-15zm282-278v104l97 65 78-52zm-44 104V204L203 321l78 52zm-193 54v75l56-37zm193 234V492l-97-65-78 52zm22-143l79-53-79-53-79 53zm22 143l175-117-78-52-97 64v105zm193-159v-75l-56 38z"/>
</svg>
</a>

C-Animated Curved square social icons widget:

Animated Curved square social icons widget
Screen Shot Animated Curved square social icons widget
HTML
  
<a href='URL' class="social rounded" aria-label="instagram">
<svg viewbox="0 0 800 800" role="img">
<path d="M400 309c-51 0-92 41-92 90s41 90 92 90 93-41 93-90-42-90-93-90zm178 56h-40c27 97-50 178-138 178s-164-82-137-178h-42v194c0 10 8 18 18 18h321c10 0 18-8 18-18V365zm-73-144c-11 0-21 10-21 21v49c0 11 10 21 21 21h52c11 0 21-10 21-21v-49c0-11-10-21-21-21h-52zm-276-51h342c32 0 59 27 59 59v342c0 32-27 59-59 59H229c-32 0-59-27-59-59V229c0-32 27-59 59-59z"/>
</svg>
</a>

<a href='URL' class="social rounded" aria-label="pinterest">
<svg viewbox="0 0 800 800" role="img">
<path d="M287 681c-9-3-15-77-6-115l38-163s-9-20-9-49c0-46 26-80 59-80 28 0 42 21 42 46 0 28-19 71-28 110-8 33 17 59 49 59 58 0 104-61 104-150 0-79-57-134-138-134-94 0-148 69-148 142 0 28 9.7 57.4 23 74 4 5 5 6 2 17l-8 31s-2 9.5-14 3c-41-22.3-63-78-63-126 0-104 75-199 217-199 114 0 203 81 203 190 0 113-72 205-171 205-55 0-75-38-75-38l-21 78c-11 41-47 102-56 99z"/>
</svg>
</a>

<a href='URL' class="social rounded" aria-label="medium">
<svg viewbox="0 0 800 800" role="img">
<path d="M650 267v328c0 14-12 20-28 12l-139-70 167-270z" fill-opacity=".4"/>
<path d="M374 360l101-164c4-7 14-10 22-6l153 77-167 270-109-177z" fill-opacity=".6"/>
<path d="M483 537l-170-85 4-185 166 270z" fill-opacity=".8"/>
<path d="M317 595c0 14-10 20-23 14l-130-65c-8-4-14-13-14-22V204c0-11 7-17 18-12l149 75v328z"/>
</svg>
</a>

<a href='URL' class="social rounded" aria-label="vine">
<svg viewbox="0 0 800 800" role="img">
<path d="M615 399v58s-27 7-59 7c-41 87-116 163-141 177-16 9-31 9-48-1-31-18-146-114-185-413h84c21 180 73 272 130 341 31-31 61-74 85-121-56-29-91-92-91-165 0-74 43-129 116-129 71 0 109 44 109 120 0 28-6 60-17 85-53 10-72-24-72-24s9-27 9-55c0-35-13-52-32-52-20 0-34 19-34 56 0 76 48 120 110 120 20 0 36-4 36-4z"/>
</svg>
</a>

<a href='URL' class="social rounded" aria-label="youtube">
<svg viewbox="0 0 800 800" role="img">
<path d="M400 224c144 0 201 2 224 25 17 17 26 52.125 26 151s-9 134-26 151c-23 23-80 25-224 25s-201-2-224-25c-17-17-26-52.125-26-151s9-134 26-151c23-23 80-25 224-25zm-52 100v141l135-70z"/>
</svg>
</a>

<a href='URL' class="social rounded" aria-label="tumblr">
<svg viewbox="0 0 800 800" role="img">
<path d="M570 602c-15 25-66 44-121 44-126 0-194-46-194-144V378h-50c-2 0-3-1-3-3v-98c0-3 4-4 7-5 50-17 77-51 84-110 2-14 14-22 24-22h144c2 0 3 1 3 3v112c0 2 1 3 3 3h80c2 0 3 1 3 3v114c0 2-1 3-3 3h-81c-2 0-3 1-3 3v115c0 11 2 11 4 11h69s2 0 3 3zM440 161h-65s-3-1-4 6c-9 63-38 101-87 121 0 0-4 1-4 4v63c0 2 1 3 3 3h48c2 0 3 1 3 3v141c0 46 27 124 129 124 33 0 66-11 83-27 1-1 0-3 0-3l-20-60c-1-4-3-3-3-3-13 5-26 7-37 7-28 0-44-15-44-45V361c0-2 1-3 3-3h81c2 0 3-1 3-3v-74c0-2-1-3-3-3h-80c-2 0-3-1-3-3V164c0-2-1-3-3-3z"/>
</svg>
</a>

<br>

<a href='URL' class="social" aria-label="google plus">
<svg viewbox="0 0 800 800" role="img">
<path d="M651 363c23.37 168.396-79.705 297-246 297-144 0-260-116-260-260s116-260 260-260c70 0 130 26 175 68l-71 68c-19-19-53-40-104-40-89 0-161 73-161 164s72 164 161 164c104 0 142-74 148-112H405v-89h246z"/>
</svg>
</a>

<a href='URL' class="social" aria-label="facebook">
<svg viewbox="0 0 800 800" role="img">
<path d="M604 170c15 0 26 11 26 26v408c0 15-11 26-26 26H487V452h60l9-70h-69v-44c0-20 6-34 35-34h37v-62s-24-3-54-3c-53 0-89 33-89 92v51h-60v70h60v178H196c-15 0-26-11-26-26V196c0-15 11-26 26-26h408z"/>
</svg>
</a>

<a href='URL' class="social" aria-label="youtube">
<svg viewbox="0 0 800 800" role="img">
<path d="M535 256c118 0 165 1 184 20 14 14 21 43 21 124s-7 110-21 124c-19 19-66 20-184 20s-166-1-185-20c-14-14-21-43-21-124s7-110 21-124c19-19 67-20 185-20zm-357 93c25 0 37 18 37 43v56c0 27-13 43-37 43s-37-17-37-43v-56c0-24 11-43 37-43zm267 111c0 18 4 31 20 31 9 0 17-6 27-17v15h26V351h-26v105c-6 8-10 12-15 12-3 0-5-1-6-5V351h-26v109zm-191 31c-16 0-19-13-19-31V350h26v113c1 4 2 5 5 5 5 0 9-4 15-12V350h27v139h-27v-15c-10 11-18 17-27 17zm415 0c17.997 0 37-8.907 37-50h-26c0 16 0 27-12 27-9 0-12-6-12-19v-25h50v-28c0-28-13-47-38-47-26 0-38 19-38 48v48c0 28 14 46 39 46zm-56-98c0-24-4-44-23-44-9 0-18 6-26 16v-60h-25v184h25v-14c8 10 17 16 26 16 20 0 23-19 23-43v-55zm-221-62v158h27V331h30v-26h-86v26h29zM112 489H84v-76L50 303h29l19 73 19-73h29l-34 110v76zm77-39v-60c0-11-2-18-11-18s-11 7-11 18v60c0 13 3 18 11 18s11-5 11-18zm398-1c0 14-3 19-10 19-4 0-9-2-13-6v-84c4-4 9-6 13-6 7 0 10 4 10 18v59zm69-61c0-13 5-16 12-16 8 0 11 4 11 17v15h-23v-16z"/>
</svg>
</a>

Description:

Change href='URL' of your social media website profile url. I hope you will found this helpful and working if you have any question regarding Animated social media icons widget for Blogger. Ask your questions in comment. or contact us through contact form. We feel happy when you ask questions. Thank you


Read more

Saturday, December 26, 2015

Add Awesome Email Subscription Widget to Blogger

Email Subscription Widget for Blogger


How to add feed-burner email subscription widget in your blogger blog? Today I am going to share responsive and stylish subscription widget for blogger. FeedBurner email is a service that allows publishers to deliver their feed content to subscribers via email. It highly effective to stick visitors with your updates and in fact it improves bloggers traffic.Through this widgets visitors would come to know after the subscription about each post shared in your blog.

DEMO:

Adding this is so simple, Please follow the following steps:
Step 1: Go to Blogger Dashboard > Template > Edit HTML and past the given code just before <Head>
<link href='https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css' rel='stylesheet' type='text/css'/> <link href='//fonts.googleapis.com/css?family=PT+Sans:400,700' rel='stylesheet' type='text/css'/>
Step 2: To install CSS code for Responsive feed-burner subscription widget. Open blogger> Templates> Edit HTML and apply the code below right before the </ style> or]]> </ b: skin>
body {
background: #333;
margin: 0 auto 0;
color: #444;
font-family: 'PT Sans', arial, sans-serif;
font-size: 13px;
font-weight: 400;
text-align: center;
}
#subscribebox {background:#314d5b; padding:20px;font-family: 'PT Sans', sans-serif;
width:300px;}
.widget_follow_subscribe .widget-detail {
padding: 36px 30px 40px 30px;}

#subscribebox p {
color: white;
font-size: 15px;
text-align: center;
font-weight: 700;
}

.follow-subscribe-social {
margin: 0 0 15px;
padding: 0 0 14px;
border-bottom: #858585 solid 1px;
}

.follow-subscribe-social ul {
list-style: none;
margin: 0;
padding: 0;
text-align: center;
}

.follow-subscribe-social ul li {
display: inline;
margin: 0 15px 0 0; border-bottom: none;
}

.follow-subscribe-social ul li:last-child {
margin: 0;
}

.follow-subscribe-social ul li a {
font-size: 17px;
color: #cacaca;

-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
-ms-transition: color 0.2s ease-in-out;
-o-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}

.follow-subscribe-social ul li a:hover {
color: #fff;
}

form.subscribe {
margin-top: -7px;
}

form.subscribe input {
display: block;
width: 100%;
}

.subscribe-email {
height: 45px;
border: none;
margin: 0 0 10px;
font-size: 0.928571em;
background-color: #ffffff;
text-align: center;
color:efefef;
}

.subscribe-email:focus {
outline: 0;
}

/* ===== Placeholder color ===== */
form.subscribe .placeholder { /* Internet Explorer 9 */
color: #cacaca;
}

form.subscribe input:-ms-input-placeholder { /* Internet Explorer 10+ */
color: #cacaca;
}

form.subscribe input::-webkit-input-placeholder { /* WebKit browsers */
color: #cacaca;
}

form.subscribe input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #fafafa;
}

form.subscribe input::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #fafafa;
}

.subscribe-button {
height: 45px;
font-weight: 700;
font-size:16px;
color: #fff;
text-transform: uppercase;
border: none;
background-color:#ea5217;

-webkit-transition: background-color 0.2s ease-in-out;
-moz-transition: background-color 0.2s ease-in-out;
-ms-transition: background-color 0.2s ease-in-out;
-o-transition: background-color 0.2s ease-in-out;
transition: background-color 0.2s ease-in-out;
}

.subscribe-button:hover {
background-color: #f4b458;
}

.subscribe-button:focus {
outline: 0;
}

.creadit a {background:#F35D5C;color:white;margin-top:30px;padding:20px;font-size:15px;}
save tamplate
Final Step 4:
just copy all the code below to Layout> Add Gadget> HTML / JavaScript.

<center> <div id="subscribebox"> <div class="follow-subscribe-social"> <ul> <li><a href="#" target="_blank"><i class="fa fa-facebook"></i></a></li> <li><a href="#" target="_blank"><i class="fa fa-twitter"></i></a></li> <li><a href="#" target="_blank"><i class="fa fa-linkedin"></i></a></li> <li><a href="#" target="_blank"><i class="fa fa-google"></i></a></li> <li><a href="#" target="_blank"><i class="fa fa-pinterest-p"></i></a></li> <li><a href="#" target="_blank"><i class="fa fa-dribbble"></i></a></li> <li><a href="#" target="_blank"><i class="fa fa-instagram"></i></a></li> </ul> </div> <img border="0" alt="Subcribe" src="http://dateinacrate.com/wp-content/uploads/2015/06/icon-subscribe.png" width="100" height="100"> <p>Subscribe to my Newsletter</p> <form class="subscribe" action='http://feedburner.google.com/fb/a/mailverify?uri=Msdesign92' method='post' onsubmit='window.open(&apos;http://feedburner.google.com/fb/a/mailverify?uri=Msdesign92, &apos;popupwindow&apos;, &apos;scrollbars=yes,width=550,height=520&apos;);return true' target='popupwindow'> <input name='uri' type='hidden' value='YOUR-USER-NAME'/> <input name='loc' type='hidden' value='en_US'/> <input class="subscribe-email" type='text' name='email' onblur='if (this.value == &quot;&quot;) {this.value = &quot;Your Email&quot;;}' onfocus='if (this.value == &quot;Your Email&quot;) {this.value = &quot;&quot;;}' value='Your Email'/> <input class="subscribe-button" type="submit" value="Subscribe" /> </form> <p style="font-size:60%;">We will not share your information with anyone</p> </div> </center> <br/><br/><br/> <div class="creadit"> <a href="http://wikiblogism.blogspot.com" target="_blank"> Get This Widget</a></div>

Discription:
  • Change USER-NAME with your feedburner username. 
I hope this widget will inspire you and will deliver heavy traffic to your blog. In fact email subscription have great influence in blog traffic.

Read more