domingo, 12 de julio de 2015

Unos de los métodos que resulta efectivo a la hora de conseguir "likes" o "tweets", es el contenido social bloqueado. Simple: bloqueas contenido importante, tus lectores lo desbloquean siguiéndote o compartiendo.

INSERTANDOLO EN NUESTRO BLOG

Nos dirigimos a Plantilla, Editar HTML y, antes del </head> pega lo siguiente:
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js' type='text/javascript'/>

Nota: Si ya tienes instalado el jQuery, salta este paso.

Sin perder de vista, pegamos lo siguiente justo por encima del </head>:
<link href="https://googledrive.com/host/0BwZ7Sm1QQc1lTnlVZG1DS3V0N3c/compartir.css" rel="stylesheet" type="text/css"></link>

Ahora, buscaremos el </body> o <body expr:class='&quot;loading&quot; + data:blog.mobileClass'> y pegamos el código de la API de Facebook:
<div id='fb-root'/>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = &quot;//connect.facebook.net/es_LA/all.js#xfbml=1&quot;;
fjs.parentNode.insertBefore(js, fjs);
}(document, &#39;script&#39;, &#39;facebook-jssdk&#39;));</script>

Guardas la plantilla y listo.

Ahora para colocarlo en cada entrada,  es necesario pegar en la edición HTML de esta, lo siguiente:
<article id="default-usage">
<div class="to-lock" style="display: none;">
Código HTML del elemento a ocultar
</article>
</div>
<script type="text/javascript" src="https://googledrive.com/host/0BwZ7Sm1QQc1lTnlVZG1DS3V0N3c/LOCKE.js"></script>
<script>
jQuery(document).ready(function ($) {
$("#default-usage .to-lock").socialLock({
text: {
header: "Comparte para desbloquear",
message: "Si quieres ver el contenido, comparte en cualquiera de las Redes"
},
style: "ui-social-locker-secrets",
buttons: {
order: ["twitter", "facebook", "google"] },
// twitter options
twitter: {
url: "URL DE TU FANPAGE",
text: "Título de la entrada!"
},
// facebook options
facebook: {
url: "URL DE LA ENTRADA",
appId: "588590114535104"
},
google: {
url: "URL DE LA ENTRADA"}});});;;;</script>

sábado, 25 de abril de 2015


Si tienes un blog en donde ofreces algún tipo de descarga, estos botones realizados con CSS3 te servirán de mucho.

Su genial diseño, hacen a estos botones atractivos ante los ojos de cualquiera, ¿y porque no? después de todo, es la "magia" del CSS3.

Puedes ver como funciona ingresando a la página de demostración.

INSERTÁNDOLO EN NUESTRO BLOG

Podemos insertar el siguiente código CSS entre el <style> y </style> junto con el HTML que sigue, si queremos usarlo una vez en una entrada.
Si deseas utilizarlo siempre en una plantilla, nos dirigimos a Plantilla, Editar HTML, presionamos CTRL+F y buscamos el ]]></b:skin>. Y, antes pegamos lo siguiente:

a.button {
    color:#000;
    position: relative;
    height: 15px;
    padding: 12px 20px 15px 68px;
    cursor: pointer;
    text-align: Right;
    font-weight: bold;
    font-size: 18px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,.3);
    -moz-box-shadow: 2px 2px 2px 0 rgba(0,0,0,.3);
    box-shadow: 2px 2px 2px 0 rgba(0,0,0,.3);
    display: inline-block !important;
    font: 700 15px 'Arial', Helvetica, Clean, sans-serif;
    margin: 0px 0px 20px 10px;
    position: relative;
    text-decoration: none;
    transition: background-position .2s ease, margin .1s ease;
    -webkit-transition: background-position .2s ease, margin .1s ease;
    -moz-transition: background-position .2s ease, margin .1s ease;
    background-repeat: repeat-x;
}
a.button:hover { background-position: 0 10px }
a.button:active {
    -webkit-box-shadow: -1px -1px 2px 0 rgba(0,0,0,.3);
    -moz-box-shadow: -1px -1px 2px 0 rgba(0,0,0,.3);
    box-shadow: -1px -1px 2px 0 rgba(0,0,0,.3);
    margin: 2px 0 20px 10px;
}
a.button span.bar {
    width: 1px;
    height: 30px;
    position: absolute;
    background: black;
    top: 5px;
    left: 50px;
}
a.button div.arrow {
    position: absolute;
    left: 20px;
    top: 14px;
}
a.button div.arrow span.top {
    position: absolute;
    width: 6px;
    height: 9px;
    background: #000;
    top: 0;
    left: 3px;
}
a.button div.arrow span.bottom,
div.arrow span.bottomShadow {
    position: absolute;
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid black;
    top: 9px;
    left: -2px;
    z-index: 2;
}
a.button div.arrow span.bottomShadow {
    z-index: 1;
    left: -1px;
}
/* GRIS
   ================================================== */
a.grey {
    background-color: #888;
    background-image: -webkit-linear-gradient(top, #888, #333);
    background-image: -moz-linear-gradient(top, #888, #333);
    background-image: -ms-linear-gradient(top, #888, #333);
    background-image: -o-linear-gradient(top, #888, #333);
    background-image: linear-gradient(top, #888, #333);
    text-shadow: 1px 1px 1px rgba(255,255,255,.2);
    border-top: 1px solid #aaa;
}
a.grey span.bar {
    -webkit-box-shadow: 1px 1px 1px rgba(255,255,255,.2);
    -moz-box-shadow: 1px 1px 1px rgba(255,255,255,.2);
    box-shadow: 1px 1px 1px rgba(255,255,255,.2);
}
a.grey div.arrow span.top {
    -webkit-box-shadow: 1px 1px 1px rgba(255,255,255,.2);
    -moz-box-shadow: 1px 1px 1px rgba(255,255,255,.2);
    box-shadow: 1px 1px 1px rgba(255,255,255,.2);
}
a.grey div.arrow span.bottomShadow { border-top: 8px solid rgba(255, 255, 255, 0.2) }
/* AZUL
   ================================================== */
a.blue {
    background-color: #00aeef;
    background-image: -webkit-linear-gradient(top, #00aeef, #00587a);
    background-image: -moz-linear-gradient(top, #00aeef, #00587a);
    background-image: -ms-linear-gradient(top, #00aeef, #00587a);
    background-image: -o-linear-gradient(top, #00aeef, #00587a);
    background-image: linear-gradient(top, #00aeef, #00587a);
    text-shadow: 1px 1px 1px #23aaff;
    border-top: 1px solid #23ccff;
}
a.blue span.bar {
    -webkit-box-shadow: 1px 1px 1px #23aaff;
    -moz-box-shadow: 1px 1px 1px #23aaff;
    box-shadow: 1px 1px 1px #23aaff;
}
a.blue div.arrow span.top {
    -webkit-box-shadow: 1px 1px 1px #23aaff;
    -moz-box-shadow: 1px 1px 1px #23aaff;
    box-shadow: 1px 1px 1px #23aaff;
}
a.blue div.arrow span.bottomShadow { border-top: 8px solid #23aaff }
/* VERDE
   ================================================== */
a.green {
    background-color: #68c800;
    background-image: -webkit-linear-gradient(top, #68c800, #367100);
    background-image: -moz-linear-gradient(top, #68c800, #367100);
    background-image: -ms-linear-gradient(top, #68c800, #367100);
    background-image: -o-linear-gradient(top, #68c800, #367100);
    background-image: linear-gradient(top, #68c800, #367100);
    text-shadow: 1px 1px 1px #67c800;
    border-top: 1px solid #67e800;
}
a.green span.bar {
    -webkit-box-shadow: 1px 1px 1px #67c800;
    -moz-box-shadow: 1px 1px 1px #67c800;
    box-shadow: 1px 1px 1px #67c800;
}
a.green div.arrow span.top {
    -webkit-box-shadow: 1px 1px 1px #67c800;
    -moz-box-shadow: 1px 1px 1px #67c800;
    box-shadow: 1px 1px 1px #67c800;
}
a.green div.arrow span.bottomShadow { border-top: 8px solid #67c800 }
/* ROJO
   ================================================== */
a.red {
    background-color: #ee5f5b;
    background-image: -webkit-linear-gradient(top, #ee5f5b, #973431);
    background-image: -moz-linear-gradient(top, #ee5f5b, #973431);
    background-image: -ms-linear-gradient(top, #ee5f5b, #973431);
    background-image: -o-linear-gradient(top, #ee5f5b, #973431);
    background-image: linear-gradient(top, #ee5f5b, #973431);
    text-shadow: 1px 1px 1px #ed5d69;
    border-top: 1px solid #ed8d69;
}
a.red span.bar {
    -webkit-box-shadow: 1px 1px 1px #ed5d69;
    -moz-box-shadow: 1px 1px 1px #ed5d69;
    box-shadow: 1px 1px 1px #ed5d69;
}
a.red div.arrow span.top {
    -webkit-box-shadow: 1px 1px 1px #ed5d69;
    -moz-box-shadow: 1px 1px 1px #ed5d69;
    box-shadow: 1px 1px 1px #ed5d69;
}
a.red div.arrow span.bottomShadow { border-top: 8px solid #ed5d69 }
/* NARANJA
   ================================================== */
a.orange {
    background-color: #ff8636;
    background-image: -webkit-linear-gradient(top, #ff8636, #9a3e00);
    background-image: -moz-linear-gradient(top, #ff8636, #9a3e00);
    background-image: -ms-linear-gradient(top, #ff8636, #9a3e00);
    background-image: -o-linear-gradient(top, #ff8636, #9a3e00);
    background-image: linear-gradient(top, #ff8636, #9a3e00);
    text-shadow: 1px 1px 1px #ff7f42;
    border-top: 1px solid #ffa542;
}
a.orange span.bar {
    -webkit-box-shadow: 1px 1px 1px #ff7f42;
    -moz-box-shadow: 1px 1px 1px #ff7f42;
    box-shadow: 1px 1px 1px #ff7f42;
}
a.orange div.arrow span.top {
    -webkit-box-shadow: 1px 1px 1px #ff7f42;
    -moz-box-shadow: 1px 1px 1px #ff7f42;
    box-shadow: 1px 1px 1px #ff7f42;
}
a.orange div.arrow span.bottomShadow { border-top: 8px solid #ff7f42 }
/* AMARILLO
   ================================================== */
a.yellow {
    background-color: #fcd116;
    background-image: -webkit-linear-gradient(top, #fcd116, #705b00);
    background-image: -moz-linear-gradient(top, #fcd116, #705b00);
    background-image: -ms-linear-gradient(top, #fcd116, #705b00);
    background-image: -o-linear-gradient(top, #fcd116, #705b00);
    background-image: linear-gradient(top, #fcd116, #705b00);
    text-shadow: 1px 1px 1px #ffc33d;
    border-top: 1px solid #ffff3d;
}
a.yellow span.bar {
    -webkit-box-shadow: 1px 1px 1px #ffc33d;
    -moz-box-shadow: 1px 1px 1px #ffc33d;
    box-shadow: 1px 1px 1px #ffc33d;
}
a.yellow div.arrow span.top {
    -webkit-box-shadow: 1px 1px 1px #ffc33d;
    -moz-box-shadow: 1px 1px 1px #ffc33d;
    box-shadow: 1px 1px 1px #ffc33d;
}
a.yellow div.arrow span.bottomShadow {
  border-top: 8px solid #ffc33d
}

Y pegamos el siguiente HTML en cualquier parte que deseamos:
<a href="http://minitrucosblogger.blogspot.com" class="button color">
  <div class="arrow">
    <span class="top"></span>
    <span class="bottom"></span>
    <span class="bottomShadow"></span>
  </div>
  <span class="bar"></span>
  Descargar
</a> 

Ahora, lo que debes reemplazar primero es la URL que se encuentra coloreada de azúl y, lo que está resaltado con naranja lo debemos reemplazar por cualquiera de los colores (en inglés) que se muestran en la primera imagen o demostración.

Hasta el siguiente tuto.

viernes, 24 de abril de 2015


Desde hace unas semanas, apareció la noticia que decía, el fanbox de facebook será reemplazado por una versión mejorada que se llama "Page Plugin".

Y como este elemento ya está en funcionamiento, les explicaré cómo añadirlo a sus blogs.

Nos dirigimos a Facebook Developers y configuramos correctamente nuestro plugin.

Después de eso, le daremos en "Get Code" y aparecerá la siguiente ventana.

En lugar del primer código, pegamos lo siguiente antes del </body>:
<div id='fb-root'/>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = &quot;//connect.facebook.net/es_LA/all.js#xfbml=1&quot;;
fjs.parentNode.insertBefore(js, fjs);
}(document, &#39;script&#39;, &#39;facebook-jssdk&#39;));</script>

Y, el segundo código, lo podemos pegar en un gadget de tipo HTML/Javascript.

Hasta el siguiente tutorial.

martes, 21 de abril de 2015


Creo que la mayoría de los bloggers tienen ya una página de facebook en donde comunicarán toda actualización que haga. Si aun no lo has hecho, te recomiendo hacerlo ahora, porque integrarse en las redes es una de las mejores cosas que le harás a tu blog. Pero bueno, sin alejarse más del tema, comenzaré a explicarte como funciona.

Con el fin de no molestar al lector, este pop up solo se muestra la primera vez que entran al blog. Pero borrando un pequeño fragmento del código es posible que aparezca cada vez que se carga una página.

Este Pop up fue creado por Arlina Design.

INSERTÁNDOLO EN NUESTRO BLOG

Basta con insertar el siguiente código en un gadget de tipo HTML/Javascript:
<style scoped='' type='text/css'>
#fb-fanbox {display:none;background:rgba(0,0,0,0.9);width:100%;height:100%;position:fixed;top:0;left:0;z-index:99999;-webkit-transform:translateZ(0);}
#fb-boxclose {width:100%;height:100%;-webkit-transform:translateZ(0);}
#fb-boxview {background:#fff;border:8px solid #03a9f4;width:340px;height:230px;position:absolute;top:33%;left:37%;border-radius:3px;}
#fb-closebox {float:right;cursor:pointer;position:absolute;right:-1px;top:-2px;z-index:2;}
#fb-closebox:before {content:"CLOSE";padding:5px 8px;background:#03a9f4;color:#fff;font-weight:normal;font-size:10px;font-family:inherit;}
#fb-boxlink,#fb-boxlink a.visited,#fb-boxlink a,#fb-boxlink a:hover {color:#aaaaaa;font-size:9px;text-decoration:none;text-align:center;padding:5px;}
</style>
<script type='text/javascript'>
//<![CDATA[
jQuery.cookie = function (key, value, options) {
// Pengaturan cookie
if (arguments.length > 1 && String(value) !== "[object Object]") {
options = jQuery.extend({}, options);
if (value === null || value === undefined) {
options.expires = -1;
}
if (typeof options.expires === 'number') {
var days = options.expires, t = options.expires = new Date();
t.setDate(t.getDate() + days);
}
value = String(value);
return (document.cookie = [
encodeURIComponent(key), '=',
options.raw ? value : encodeURIComponent(value),
options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
options.path ? '; path=' + options.path : '',
options.domain ? '; domain=' + options.domain : '',
options.secure ? '; secure' : ''
].join(''));
}
// Dapatkan cookie
options = value || {};
var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent;
return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null;
};
//]]>
</script>
<script type='text/javascript'>
jQuery(document).ready(function($){
if($.cookie('popup_facebook_box') != 'yes'){
$('#fb-fanbox').delay(3000).fadeIn('fast');
$('#fb-closebox, #fb-boxclose').click(function(){
$('#fb-fanbox').stop().fadeOut('fast');
});
}
$.cookie('popup_facebook_box', 'yes', { path: '/', expires: 7 });
});
</script>
<div id='fb-fanbox'>
<div id='fb-boxclose'>
</div>
<div id='fb-boxview'>
<div id='fb-closebox'>
</div>
<iframe allowtransparency='true' frameborder='0' scrolling='no' src='//www.facebook.com/plugins/likebox.php?
href=https://www.facebook.com/MiniTrucos-Blogger-1436564899976672&width=402&height=255&colorscheme=light&show_faces=true&show_border=false&stream=false&header=false'
style='border:none;overflow:hidden;width:339px;height:200px;'></iframe>
</div>
</div>

Recuerda reemplazar lo que se encuentra en azúl por la URL de tu fanpage de Facebook.

Ahora, como les mencioné anteriormente, también es posible hacer que se muestre cada vez que se cargue una página. Para eso, tendremos que eliminar la parte que se encuentra coloreada en nrja, es decir el código
$.cookie('popup_facebook_box', 'yes', { path: '/', expires: 7 });
.

Bueno, eso sería todo por hoy... hasta el siguiente tutorial.

lunes, 20 de abril de 2015


De nuevo aquí, solo tú y yo ( ͡° ʖ ͡°)... en un nuevo tutorial. Esta vez les traigo un gran menú horizontal animado, todo logrado con CSS.

El efecto animado se aplica al momento de pasar el cursor por uno de los menús desplegables. Podrás ver como funciona viendo la Demo.

¿Grandioso efecto, no? ahora, pongámoslo en vuestros blogs.

Insertándolo en vuestros blogs

Nos dirigimos a Diseño, Añadir Gadget, seleccionamos el que dice HTML/Javascript y pegamos lo siguiente:
<style type="text/css">
#menu, #menu ul {
margin: 0;
padding: 0;
list-style: none;
}
#menu {
width: 960px;
margin: 60px auto;
border: 1px solid #222;
background-color: #111;
background-image: linear-gradient(#444, #111);
border-radius: 6px;
box-shadow: 0 1px 1px #777;
}
#menu:before, #menu:after {
content: "";
display: table;
}
#menu:after {
clear: both;
}
#menu {
zoom:1;
}
#menu li {
float: left;
border-right: 1px solid #222;
box-shadow: 1px 0 0 #444;
position: relative;
}
#menu a {
float: left;
padding: 12px 30px;
color: #999;
text-transform: uppercase;
font: bold 12px Arial, Helvetica;
text-decoration: none;
text-shadow: 0 1px 0 #000;
}
#menu li:hover > a {
color: #fafafa;
}
*html #menu li a:hover { /* IE6 only */
color: #fafafa;
}
#menu ul {
margin: 20px 0 0 0;
_margin: 0; /*IE6 only*/
opacity: 0;
visibility: hidden;
position: absolute;
top: 38px;
left: 0;
z-index: 1;  
background: #444; background: linear-gradient(#444, #111);
box-shadow: 0 -1px 0 rgba(255,255,255,.3); border-radius: 3px;
transition: all .2s ease-in-out;
}
#menu li:hover > ul {
opacity: 1;
visibility: visible;
margin: 0;
}
#menu ul ul {
top: 0;
left: 150px;
margin: 0 0 0 20px;
_margin: 0; /*IE6 only*/
box-shadow: -1px 0 0 rgba(255,255,255,.3); }
#menu ul li {
float: none;
display: block;
border: 0;
_line-height: 0; /*IE6 only*/
box-shadow: 0 1px 0 #111, 0 2px 0 #666;
}
#menu ul li:last-child {
box-shadow: none;  
}
#menu ul a {  
padding: 10px;
width: 130px;
_height: 10px; /*IE6 only*/
display: block;
white-space: nowrap;
float: none;
text-transform: none;
}
#menu ul a:hover {
background-color: #0186ba;
background-image: linear-gradient(#04acec, #0186ba);
}
#menu ul li:first-child > a {
border-radius: 3px 3px 0 0;
}
#menu ul li:first-child > a:after {
content: '';
position: absolute;
left: 40px;
top: -6px;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #444;
}
#menu ul ul li:first-child a:after {
left: -6px;
top: 50%;
margin-top: -6px;
border-left: 0; border-bottom: 6px solid transparent;
border-top: 6px solid transparent;
border-right: 6px solid #3b3b3b;
}
#menu ul li:first-child a:hover:after {
border-bottom-color: #04acec;
}
#menu ul ul li:first-child a:hover:after {
border-right-color: #0299d3;
border-bottom-color: transparent; }
#menu ul li:last-child > a {
border-radius: 0 0 3px 3px;
}
</style>
<ul id="menu">
<li><a href="#">Home</a></li>
<li>
<a href="#">Categories</a>
<ul>
<li><a href="#">CSS</a></li>
<li><a href="#">Graphic design</a></li>
<li><a href="#">Development tools</a></li>
<li><a href="#">Web design</a></li>
</ul>
</li>
<li><a href="#">Work</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a>
  <ul>
<li><a href="#">Creating Blogs</a></li>
<li><a href="#">Logo and Web Design</a></li>
<li><a href="#">SEO Optimization</a></li>
</ul>
  </li>
  <li><a href="#">FAQ</a></li>
  <li><a href="#">Contact</a></li>
  <li><a href="#">Blog</a></li>
  <img width="32px" height="32px" title="MiniTrucos Blogger" style="float:right;margin:3px" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7deZ_V3YHI-FpeAotdnNlTFvTSUT4fZhydSu099Al4OOmo68OxaU9kdYC6fQc3EgibX4rXWu2Ga3xe1T9SA6p2804IQgRbt3lGvSlKK-KRy7kGq6TDrJyCuxnU6zZ2JjWywIobvciOL4-/s1600/MTB.png"/>
</ul>

Lo que se encuentra en rojo lo deberás cambiar por el texto que deseas, mientras que lo de nosé tendrás que reemplazarlo por la URL a la que quieres que dirija.

Y lo pintado en narj está compuesto por atributos de la imagen que vez al final del menú. Solo podrás cambiar lo que se encuentra en negrita, es decir, estos:
   title: Es el texto que aparece al pasar el cursor por encima de la imagen.
   src: La URL de la imagen que quieres que aparezca.

Sin más que agregar, espero que hayan realizado los pasos con éxito. Hasta el siguiente tuto.

domingo, 19 de abril de 2015

Hoy les traigo unos fenomenales iconos sociales hechos con CSS. Recuerdo que en un tiempo compartí en mi otro blog unos iconos con el mismo efecto, pero lo que hace especial a este es que, los iconos se encuentran hechos de puro CSS, lo que los hará cargar mucho más rápido.

Si no visitaste el enlace que te dejé, te explicaré como funciona.
El efecto que obtienes al poner el cursor sobre un icono, es un efecto de opacidad para los demás; es decir, todos los iconos se volverán transparentes a excepción del que le tienes el cursor encima.

Si no comprendiste, este gif te lo dejará más claro.
Sensacional efecto ¿no?, probemos cómo queda en vuestros blogs.

Insertándolo en vuestros blogs.

Para ahorrarnos más pasos, incrustaremos los códigos de uno solo, como el diseño de los iconos se compone de puro CSS, lo encerraremos entre las etiquetas <style> y </style>.

Y para eso, nos dirigimos a Diseño, Añadir Gadget, escogemos el que dice HTML/Javascript y pegamos lo siguiente:
<style type="text/css">
@import url(http://weloveiconfonts.com/api/?family=entypo|zocial);
@import url(http://fonts.googleapis.com/css?family=Sintony);
/* entypo */
[class*="entypo-"]:before {
  font-family: 'entypo', sans-serif;
}
/* zocial */
[class*="zocial-"]:before {
  font-family: 'zocial', sans-serif;
}
i {
  font-style: normal;
}
ul.social-links {
  list-style: none;
  width: 21.81818em;
  margin: 2em auto;
}
ul.social-links .social-icon {
  width: 4em;
  height: 4em;
  float: left;
  margin: 1em 1.4em;
  margin-left: 0;
  border-radius: 100%;
  box-shadow: 0 0.3em 0.25em rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
ul.social-links .social-icon a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  transform: scale(1.15) translateZ(0);
}
ul.social-links .social-icon a:hover {
  transform: scale(1.15) translateZ(0);
}
ul.social-links .social-icon a span {
  display: block;
  float: left;
  width: 1em;
  height: 4em;
  overflow: hidden;
  margin: 0;
  line-height: 1.1;
  padding: 0;
  font-size: 1.4em;
  position: relative;
}
ul.social-links .social-icon a span:nth-child(1) {
  text-align: right;
  position: absolute;
}
ul.social-links .social-icon a span:nth-child(1) i {
  display: block;
  margin-top: .55em;
  margin-left: .35em;
  color: #fff;
}
ul.social-links .social-icon a span:nth-child(2) {
  text-align: left;
  margin-left: 0em;
  width: 40%;
  position: relative;
  margin: 0 0em 0 1em;
  text-align: left;
  z-index: 2;
}
ul.social-links .social-icon a span:nth-child(2) i {
  margin-top: .55em;
  margin-left: -.65em;
  display: block;
  color: #ccc;
}
ul.social-links .social-icon.twitter {
  background-color: #00cdf8;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #00cdf8), color-stop(50%, #00bdda));
  background-image: -webkit-linear-gradient(left, #00cdf8 50%, #00bdda 50%);
  background-image: linear-gradient(to right,#00cdf8 50%, #00bdda 50%);
}
ul.social-links .social-icon.twitter a {
  left: .74em;
  top: .25em;
}
ul.social-links .social-icon.twitter span:nth-child(2) i {
  color: #fef1e0;
}
ul.social-links .social-icon.facebook {
  background-color: #6e8cca;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #6e8cca), color-stop(50%, #5389c9));
  background-image: -webkit-linear-gradient(left, #6e8cca 50%, #5389c9 50%);
  background-image: linear-gradient(to right,#6e8cca 50%, #5389c9 50%);
}
ul.social-links .social-icon.facebook a {
  left: 1.09em;
  top: .2em;
}
ul.social-links .social-icon.facebook span:nth-child(1) {
  margin-left: -.25em;
}
ul.social-links .social-icon.facebook span:nth-child(2) {
  margin-left: .74em;
}
ul.social-links .social-icon.facebook span:nth-child(2) i {
  color: #c2ecf8;
}
ul.social-links .social-icon.dribbble {
  background-color: #e6659d;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #e6659d), color-stop(50%, #be639c));
  background-image: -webkit-linear-gradient(left, #e6659d 50%, #be639c 50%);
  background-image: linear-gradient(to right,#e6659d 50%, #be639c 50%);
}
ul.social-links .social-icon.dribbble a {
  left: .80em;
  top: .25em;
}
ul.social-links .social-icon.dribbble span:nth-child(1) {
  margin-left: -.08em;
}
ul.social-links .social-icon.dribbble span:nth-child(2) {
  margin-left: .92em;
}
ul.social-links .social-icon.dribbble span:nth-child(2) i {
  color: #d9e9f8;
}
ul.social-links .social-icon.behance {
  background-color: #07a2e5;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #07a2e5), color-stop(50%, #0395e2));
  background-image: -webkit-linear-gradient(left, #07a2e5 50%, #0395e2 50%);
  background-image: linear-gradient(to right,#07a2e5 50%, #0395e2 50%);
}
ul.social-links .social-icon.behance a {
  left: .80em;
  top: .25em;
}
ul.social-links .social-icon.behance span:nth-child(1) {
  margin-left: -.06em;
}
ul.social-links .social-icon.behance span:nth-child(2) {
  margin-left: .92em;
}
ul.social-links .social-icon.behance span:nth-child(2) i {
  color: #75e3fe;
}
ul.social-links .social-icon.youtube {
  background-color: #e23c48;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #e23c48), color-stop(50%, #b83c47));
  background-image: -webkit-linear-gradient(left, #e23c48 50%, #b83c47 50%);
  background-image: linear-gradient(to right,#e23c48 50%, #b83c47 50%);
}
ul.social-links .social-icon.youtube a {
  left: .80em;
  top: .15em;
}
ul.social-links .social-icon.youtube span:nth-child(1) {
  margin-left: -.06em;
}
ul.social-links .social-icon.youtube span:nth-child(2) {
  margin-left: .92em;
}
ul.social-links .social-icon.youtube span:nth-child(2) i {
  color: #d1e5ec;
}
ul.social-links .social-icon.linkedin {
  background-color: #4495c0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #4495c0), color-stop(50%, #447fa7));
  background-image: -webkit-linear-gradient(left, #4495c0 50%, #447fa7 50%);
  background-image: linear-gradient(to right,#4495c0 50%, #447fa7 50%);
}
ul.social-links .social-icon.linkedin a {
  left: .80em;
  top: .11em;
}
ul.social-links .social-icon.linkedin span:nth-child(1) {
  margin-left: -.06em;
}
ul.social-links .social-icon.linkedin span:nth-child(2) {
  margin-left: .92em;
}
ul.social-links .social-icon.linkedin span:nth-child(2) i {
  color: #f4dbe1;
}
ul.social-links .social-icon.skype {
  background-color: #00cff7;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #00cff7), color-stop(50%, #01c7f8));
  background-image: -webkit-linear-gradient(left, #00cff7 50%, #01c7f8 50%);
  background-image: linear-gradient(to right,#00cff7 50%, #01c7f8 50%);
}
ul.social-links .social-icon.skype a {
  left: .80em;
  top: .2em;
}
ul.social-links .social-icon.skype span:nth-child(1) {
  margin-left: -.06em;
}
ul.social-links .social-icon.skype span:nth-child(2) {
  margin-left: .92em;
}
ul.social-links .social-icon.skype span:nth-child(2) i {
  color: #94f0ff;
}
ul.social-links .social-icon.pinterest {
  background-color: #f34256;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f34256), color-stop(50%, #ca3f56));
  background-image: -webkit-linear-gradient(left, #f34256 50%, #ca3f56 50%);
  background-image: linear-gradient(to right,#f34256 50%, #ca3f56 50%);
}
ul.social-links .social-icon.pinterest a {
  left: .80em;
  top: .25em;
}
ul.social-links .social-icon.pinterest span:nth-child(1) {
  margin-left: -.06em;
}
ul.social-links .social-icon.pinterest span:nth-child(2) {
  margin-left: .92em;
}
ul.social-links .social-icon.pinterest span:nth-child(2) i {
  color: #d9fbfd;
}
.social-links:hover .social-icon:not(:hover) {
  opacity: 0.6;
}
</style>
<ul class="social-links">
  <li class="social-icon twitter">
  <a href="#ID_Twitter">
  <span><i><span class="ico entypo-twitter"></span></i></span>
  <span><i><span class="ico entypo-twitter"></span></i></span>
  </a>
  </li>
  <li class="social-icon facebook">
  <a href="#ID_Facebook">
  <span><i><span class="ico entypo-facebook"></span></i></span>
  <span><i><span class="ico entypo-facebook"></span></i></span>
  </a>
  </li>
  <li class="social-icon dribbble">
  <a href="#ID_Dribbble">
  <span><i><span class="ico entypo-dribbble"></span></i></span>
  <span><i><span class="ico entypo-dribbble"></span></i></span>
  </a>
  </li>
  <li class="social-icon behance">
  <a href="#ID_Behance">
  <span><i><span class="ico entypo-behance"></span></i></span>
  <span><i><span class="ico entypo-behance"></span></i></span>
  </a>
  </li>
  <li class="social-icon youtube">
  <a href="#ID_Youtube">
  <span><i><span class="ico zocial-youtube"></span></i></span>
  <span><i><span class="ico zocial-youtube"></span></i></span>
  </a>
  </li>
  <li class="social-icon linkedin">
  <a href="#ID_Linkedin">
  <span><i><span class="ico entypo-linkedin"></span></i></span>
  <span><i><span class="ico entypo-linkedin"></span></i></span>
  </a>
  </li>
  <li class="social-icon skype">
  <a href="#ID_Skype">
  <span><i><span class="ico entypo-skype"></span></i></span>
  <span><i><span class="ico entypo-skype"></span></i></span>
  </a>
  </li>
  <li class="social-icon pinterest">
  <a href="#ID_Pinterest">
  <span><i><span class="ico entypo-pinterest"></span></i></span>
  <span><i>   <span class="ico entypo-pinterest"></span></i></span>
  </a>
  </li>
  </ul>

Creo que está de más decirles que deben reemplazar lo que se encuentra de color nosé por la URL que indica. Bueno, y sin más que agregar, espero que no hayan tenido problemas con realizar los pasos. Hasta el siguiente tutorial.
2014 © Planer - Responsive Blogger Magazine Theme
Plantilla desarrollada por Way2themes.