Cita:
Iniciado por baccxus Para que no lo hagas uno por uno:
entre las etiquetas <head>...</head>, colocas esto:
<style>
* a {text-decoration: none}
</style>
Gracias baccxus, eso me acaba de solucionar un problemita por aquí. Pero me queda la intriga de por qué no funcionó en el CSS. Aquí está el estilo:
Código HTML:
.titulo a:hover, .titulo a.visited, .titulo a:link {
font-family: Georgia, "Times New Roman", Times, Serif ! important;
font-weight: bold ! important;
font-size: 16px ! important;
font-style: normal ! important;
text-transform: none ! important;
text-align: left ! important;
text-decoration: none ! important;
color: rgb(51, 153, 153) ! important;
background-color: transparent;
}
¿Qué será lo que hice mal?.
EDITADO | SOLUCIONADO:
Había olvidado colocar los estilos de links básicos:
Código HTML:
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
...Zapatero a su zapato jejeje