XF 2.2 How to online icon change

This should get you started - add to the extra.less template:

Code:
.message-avatar-wrapper .message-avatar-online
{
    left: 12%;
    top: 0;

    &::before
    {
        border-radius: 0;
        border: none;
        content: "\f0c8";
    }
}

1612211000100.png

You can adjust the styling to suit, use a different font awesome icon, or a completely custom solution.
 
Back
Top Bottom