Magazine

Tutoriales Blogger #5: CÓMO PERSONALIZAR EL SIDEBAR DE BLOGGER CON CSS

Publicado el 07 febrero 2021 por Kc
personalizar el sidebar con css en blogger

6 Maneras de Personalizar el Sidebar

¡Que tal mundo!!Feliz Dominguito y hoy les trago este maravilloso tutorial donde encontraran 6 formas distintas de personalizar tu sidebar de Blogger con CSS. En mi ultimo tutorial te enseñe como añadir un menú flotante con iconos de redes sociales y hoy le toca al sidebar. Verán que este tutorial es super sencillo y para nada complicado. Estos diseños los vi en el blog De Morros con el 2.0PD: a los códigos, yo solo le agregue algunas cositas para que sea un poco, mas entendible
como-personalizar-los-titulos-del-sidebar-en-blogger1. TÍTULO CON FONDO DE IMAGEN
div.widget > h2,
div.widget h2.title {
margin: 0 0 1em 0;
text-align: center;
/*ubicación del texto*/
text-transform: uppercase;
/*para mayúsculas*/
letter-spacing: 1px;
background: url("
URL DE TU IMAGEN") repeat-x;
padding: 10px;
font: $(widget.title.font);
color: $(widget.title.text.color);
}

2. TÍTULO CON FONDO LISO
div.widget > h2,
div.widget h2.title {
margin: 0 0 1em 0;
text-align: center;
/*Ubicación del texto*/
text-transform: uppercase;
/*Para mayúsculas*/
letter-spacing: 1px;
background: #F3C2D8;
/*Color del fondo*/
padding: 10px;
font: $(widget.title.font);
color: $(widget.title.text.color);
}

3. TITULO CON FONDO Y LÍNEA
div.widget > h2,
div.widget h2.title {
margin: 0 0 1em 0;
text-align: center;/*Ubicación del texto*/
text-transform: uppercase;/*Para mayúsculas*/
letter-spacing: 1px;
background: #F3C2D8;/*Color del fondo*/
border-top: 2px solid #C38AA3;/*Color de linea y grosor*/
padding: 10px;
font: $(widget.title.font);
color: $(widget.title.text.color);
}

4. TITULO ENMARCADO
div.widget > h2,
div.widget h2.title {
margin: 0 0 1em 0;
text-align: center;/*Ubicación del texto*/
text-transform: uppercase;/*Para mayúsculas*/
letter-spacing: 1px;
border: 5px ridge #C38AA3;/*Color de linea y enmarcado*/
padding: 10px;
font: $(widget.title.font);
color: $(widget.title.text.color);
}

5. TITULO ENMARCADO CON REDONDEO
div.widget > h2,
div.widget h2.title {
margin: 0 0 1em 0;
text-align: center;/*Ubicación del texto*/
text-transform: uppercase; /*Para mayúsculas*/
letter-spacing: 1px;
border: 5px double #C38AA3;/*Color de linea y enmarcado*/
border-radius: 25px; /*este valor es para redondear el marco*/
padding: 10px;
font: $(widget.title.font);
color: $(widget.title.text.color);
}

6. TITULO CON LÍNEAS INDEPENDIENTES
div.widget > h2,
div.widget h2.title {
margin: 0 0 1em 0;
text-align: center;/*Ubicación del texto*/
text-transform: uppercase;/*Para mayúsculas*/
letter-spacing: 1px;
border-top: 5px ridge #C38AA3;/*Color de linea arriba*/
border-bottom: 3px dotted #C38AA3;/*Color de segunda linea y grosor*/
padding: 10px;
font: $(widget.title.font);
color: $(widget.title.text.color);
}


Esto seria todo.Muchas Gracias por leer me, No olviden: comentar, seguir el blog y compartir!!Besitos¡¡Kc...
¿Te gusta lo que hago? Me ayudas

í

Volver a la Portada de Logo Paperblog