Der bliver bare brugt to forskellige class' af links.
Den til højre er flg.
A.menulink {
color: #505050;
text-decoration: none;
display: block;
padding-left: 3px;
}
A.menulink:hover {
background-color: #CFDFE9;
display: block;
text-decoration: none;
}
A.menulink:visited {
display: block;
}
så skal du skrive: <a class="menulink" href="...
I midten bliver den alm. link brugt:
A {
text-decoration: none;
/*color: #505050;*/
color: maroon;
}
A:hover {
text-decoration: underline;
color: black;
}
Her skal ikke skrive nogen class!
**********
F. Mahmood