XF 1.2 Hover color of tagged names

EXTRA.css:
Code:
.thread_view .messageContent .username {
color: red !important;
}

Oh wait, you just want hover:
Code:
.thread_view .messageContent .username:hover {
color: blue !important;
}
 
EXTRA.css:
Code:
.thread_view .messageContent .username {
color: red !important;
}

Oh wait, you just want hover:
Code:
.thread_view .messageContent .username:hover {
color: blue !important;
}

Wouldn't it be this?

Code:
.ugc a:hover, .ugc a:focus {
    color: white;
}
 
Top Bottom