11/03/2009, 15:51
|
| | | Fecha de Ingreso: diciembre-2007 Ubicación: España
Mensajes: 165
Antigüedad: 16 años, 10 meses Puntos: 2 | |
Respuesta: Problema con A:Hover FENOMENAL!!!! ya lo consegui...
Muchas gracias a todos por vuestra ayuda :):) Dejo posteado aqui la solución por si le sirve de ayuda a alguien. El a:hover hace el efecto de cambio color a TODOS los links, y el .cssnegro:hover solo le afecta al estilo cssnegro, podeis ponerselos a tantos estilos como querais.
.csslocalizacion {
font-family: verdana;
font-size: 11px;
color: #333333;
}
.cssrojo {
font-family: verdana;
font-size: 11px;
color: #990000;
}
.cssrojo_grande {
font-family: verdana;
font-size: 15px;
color: #990000;
}
.cssrojo_grande2 {
font-family: verdana;
font-size: 15px;
color: #EB051F;
}
.fila_0 {
font-family: verdana;
font-size: 21px;
color: #FFFFFF;
background-color: #E3E8EC;
}
.fila_1 {
font-family: verdana;
font-size: 21px;
color: #FFFFFF;
background-color: #ECF1F6;
}
.csstyle {
font-family: verdana;
font-size: 11px;
color: #FFFFFF;
}
/*PARA PONER UN LINK EN OTRO COLOR CONCRETO... USAMOS LAS ETIQUETAS .cssnegro:link */
/*NO OLVIDAR AÑADIRLO LUEGO EN EL a href*/
.cssnegro {
font-family: verdana;
font-size: 11px;
color: #000000;
}
.cssnegro:link{color: #000000; text-decoration: none}
.cssnegro:visited{color: #000000; text-decoration: none}
.cssnegro:hover{color: #990000; text-decoration: none}
.cssnegro:active{color: #000000; text-decoration: none}
/*Y ASI DECLARAMOS LOS ESTILOS NORMALES */
a:link{color: #FFFFFF; text-decoration: none}
a:visited{color: #FFFFFF; text-decoration: none}
a:hover{color: #CCCCCC; text-decoration: none}
a:active{color: #FFFFFF; text-decoration: none}
Un abrazo!!! y gracias de nuevo!! |