
Como siempre digo antes de modificar algo de nuestra plantilla, tenemos que hacer una copia de seguridad por si algo no nos sale bien.
Puedes verlo paso a paso en este .VÃnculo
Ahora nos vamos a
Tema > Editar HTML y buscamos ]]></b:skin>
justo encima pegamos este codigo.
/* Subrayado tÃtulo */
h3.post-title {
display: inline-block;
}
h3.post-title:after {
content: '';
display: block;
height: 3px;
width: 0;
background: transparent;
transition: width .5s ease, background-color .5s ease;
}
h3.post-title:hover:after {
width: 100%;
background: #1198cc;
}
h3.post-title {
display: inline-block;
}
h3.post-title:after {
content: '';
display: block;
height: 3px;
width: 0;
background: transparent;
transition: width .5s ease, background-color .5s ease;
}
h3.post-title:hover:after {
width: 100%;
background: #1198cc;
}
Ajustes:
Cambiar tamaño del subrayado :height: 3px
Color del subrayado: #1198cc
0 Comentarios
En breve revisaremos tu comentario para poder publicarlo.
Muchas gracias