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;
}
 
Back
Top Bottom