Réponse acceptée !
salut,
tu fais comme avec a.hover
mais tu nomme une classe comme cela: a.maClasse:hover,
puis dans ton lien tu rajout class=maClasse.
ainsi tu peut creer plusieurs classes pour les liens et ainsi changer ce que tu veux.
exemple:
A.menulink {width:160px;
height:20px;
text-decoration: none;
font-family: Times;
font-size:12px;
color:#000000;
BORDER: none;
border: solid 1px #000000;
background-color: #008514;}
A.menulink:hover {
border: solid 1px #ffffff;
background-color: #003366;
font-family: Times;
font-size:12px;color:#ffffff;}
A.grosmenulink {width: 160px;
height:20px;
text-decoration: none;
font-family: Times;
font-size:14px;
font-weight: bold;
color:#000000;
BORDER: none;
border: solid 2px #000000;
background-color: #008514;}
A.grosmenulink:hover {
border: solid 2px #FFFFFF;
background-color: #003366;
font-family: Times;font-size:14px;
font-weight:bold;color: #ffffff;}
ici il y a deux classes différentes ainsi u choisi la classe que tu désire.
a+