XF 1.4 Staff online now widget

Jadster

Member
Hello XF Community,
I wanted to ask as to how I would make it so that the Staff online now widget only shows avatars but when you hover over it, the name of the user would appear. Is this possible?

-Jad
 
Add this to your EXTRA.css

Code:
.staffOnline .username,
.staffOnline .userTitle {
    opacity: 0;
    transition: .4s
}

.staffOnline li:hover .username,
.staffOnline li:hover .userTitle {
    opacity: 1
}
 
Top Bottom