I currently have an issue that I can't seem to resolve. I have different usergroups with their own colours. For these usergroups I want to set text-decoration on hover to none. But this is not possible so it seems (or I think) because each unique usergroup class comes in a span inside the a tag:
So I can't speak to the "username" class without affecting all usergroups. It would be possible if the style3 class is moved to the a tag:
Then I would just use this css
However my CSS knowledge is not perfect,so maybe it's possible to link css classes in reverse order like this:
Code:
<a class="username" href="members/luxus.1/"><span class="style3">Luxus</span></a>
So I can't speak to the "username" class without affecting all usergroups. It would be possible if the style3 class is moved to the a tag:
Code:
<a class="username style3" href="members/luxus.1/"><span>Luxus</span></a>
Then I would just use this css
Code:
.style3:hover
{
text-decoration: none !important;
}
However my CSS knowledge is not perfect,so maybe it's possible to link css classes in reverse order like this:
Code:
.style3 username:hover
{
text-decoration: none !important;
}