Hi,
how can I show the online/offline icon for the item-header-avatar? There is something in default.css in custom_buddypress implemented for the search-item .avatar
COPY CODE
#members-list .search-item .avatar {
position: relative;
overflow: visible !important;
}
.avatar span.online,
.avatar span.offline {
position: absolute;
display: block;
top: 2px; right: 2px;
z-index: 10;
content: ' ';
width: 16px;
height: 16px;
border: 3px solid #fff;
border-radius: 50%;
}
.avatar span.online {
background: #33cc33;
}
.avatar span.offline {
background: #cccccc;
}
, but I dont get it how to do that for the item-header-avatar.
Best regards:
Kurt