Hola, no consigo hacer esto con CSS, se que existe la posibilidad de lograrlo poniendo una imagen de fondo, pero no lo consigo, alguien me puede ayudar?
Gracias
| |||
Lineas a izquierda y derecha de texto Hola, no consigo hacer esto con CSS, se que existe la posibilidad de lograrlo poniendo una imagen de fondo, pero no lo consigo, alguien me puede ayudar? Gracias |
| |||
Respuesta: Lineas a izquierda y derecha de texto La idea sería hacer un div contenedor que tenga el background de la linea y dentro de este un div centrado mas pequeño que contenga el texto con un background blanco (como en tu ejemplo). Prueba esto a ver si te sirve:
Código:
<!DOCTYPE html> <html> <head> <meta charset=utf-8 /> <title></title> <style> #contenedor{ background:url(http://i537.photobucket.com/albums/ff338/CarbayonesAzules/linea-web.jpg) repeat-x center; width:50%; } #texto{ text-align:center; width:50%; background:white; margin:auto; } </style> </head> <body> <div id="contenedor"> <div id="texto"> EDITORIAL </div> </div> </body> </html> |
| |||
Respuesta: Lineas a izquierda y derecha de texto Perfecto la idea es esta, y funciona perfectamente, hay posibilidad de incluirlo dentro de un h2 { }, soy bastante nuevo en CSS, lo siento si la pregunta es un poco absurda. Muy agradecido CraYzoR por tu respuesta y la rapidez, muchas gracias. |
| |||
Respuesta: Lineas a izquierda y derecha de texto No sé si he entendido muy bien la pregunta, pero si quieres un H2 en el texto no hay ningún problema: <!DOCTYPE html> <html> <head> <meta charset=utf-8 /> <title></title> <style> #contenedor{ background:url(http://i537.photobucket.com/albums/ff338/CarbayonesAzules/linea-web.jpg) repeat-x center; width:50%; } #texto{ text-align:center; width:50%; background:white; margin:auto; } </style> </head> <body> <div id="contenedor"> <div id="texto"> <h2>EDITORIAL</h2> </div> </div> </body> </html> |
| |||
Respuesta: Lineas a izquierda y derecha de texto Lo siento, creo que me he explicado mal, lo tengo que incluir en el h2, es una plantilla de Shopify, y hay estilos que ya están creados, no se si es posible, es que voy un poco perdido: h1 { color: {{ settings.header_color }}; font-weight:{{ settings.header_weight }}; font-size:{{ settings.main_heading_font_size }}; line-height:{{ settings.main_heading_line_height }}; } h2 { text-align:center; color: {{ settings.header_color }}; font-weight:{{ settings.header_weight }}; font-size:{{ settings.sub_heading_font_size }}; line-height:{{ settings.sub_heading_line_height }}; } h3 { color: {{ settings.header_color }}; font-weight:{{ settings.header_weight }}; font-size:{{ settings.footer_heading_font_size }}; line-height:{{ settings.footer_heading_line_height }}; } h4 { font-size: 13px; line-height: 18px; } h5 { font-size: 12px; line-height: 18px; } h6 { font-size: 10px; line-height: 18px; text-transform:uppercase; } Lo siento, y gracias por tu tiempo. |
| ||||
Respuesta: Lineas a izquierda y derecha de texto Otra opción usando sólo CSS:
Código CSS:
Ver original
Código HTML:
Ver original Igual hay algo que no he tenido en cuenta pero a priori no veo problemas. |
Etiquetas: |