Bonjour,
dans mon fichier css je met
h2
{
color: rgb(153,102,153);
font-family: Times New Roman, Times, serif;
font-style: italic;
font-size: 19px;
text-decoration: underline;
}
malgré ca mes liens restent bleus. comment puis je changer la couleur
merci d'avance

cela s'applique avec un span class=liens (j'ai d'autres couleurs ailleurs)
.liens {
font-size: 0.9em;
list-style-type:none;
text-decoration: none;
color:#FFFFFF;
}
.liens a:link {
font-size: 0.9em;
text-decoration: none;
list-style-type:none;
color:#FFFFFF;
}
.liens a:visited {
font-size: 0.9em;
text-decoration: none;
list-style-type:none;
color:#FFFFFF;
}
/**********************************************/
.liens a:hover {
font-size: 0.9em;
text-decoration: none;
list-style-type:none;
color:#FF0000;
}
/*************************************/
.liens a:active {
font-size: 0.9em;
text-decoration: none;
list-style-type:none;
color:#FFFFFF;
}