Crew algemeen |
|
Zoals ontani heeft voor alle links, dus hover en active en visited en link.
Bij het onderstaande kun je het apart instellen:
<style type="text/css">
/*General links*/
a:link {
color: #FFFFFF;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #FFFFFF;
}
a:hover {
text-decoration: underline;
color:#CCCCCC;
}
a:active {
text-decoration: none;
color: #FFFFFF;
}
/*links voor het menu*/
a:link.m {
color: black;
text-decoration: none;
}
a:visited.m {
text-decoration: none;
color: black;
}
a:hover.m {
text-decoration: underline;
color: green;
}
a:active.m {
text-decoration: none;
color: black;
}
</style>
<a href="test">test</a><br />
<a href="test" class="m">test</a>
<style type="text/css"> /*General links*/ color: #FFFFFF; text-decoration: none; } a:visited { text-decoration: none; color: #FFFFFF; } a:hover { text-decoration: underline; color:#CCCCCC; } a:active { text-decoration: none; color: #FFFFFF; } /*links voor het menu*/ color: black; text-decoration: none; } a:visited.m { text-decoration: none; color: black; } a:hover.m { text-decoration: underline; color: green; } a:active.m { text-decoration: none; color: black; } </style> <a href="test">test</a><br /> <a href="test" class="m">test</a>
@Ontani: Jah, ik denk wel dat je gelijk hebt...
Maar het zit zo, ik was al aan de code begonnen dus heb ik de code er toch maar op gezet.
Zodat ik er niet voor nix aan begonnen was:) |