Change user colors

Coloured member types

Kunena offer to you the possibility to change the member colour types in forum, by adding just some little things in the custom.less file. You will find the less file in the backend, so you can easy change the colors (see custom.less).

Crypsis

.kwho-admin {
    color: #FF0000 !important;
}
.kwho-globalmoderator {
    color: #800000 !important;
}
.kwho-moderator {
    color: #0000FF !important;
}
.kwho-user {
    color: #5388B4 !important;
}
.kwho-guest {
    color: #666666 !important;
}
.kwho-banned {
    color: #A39D49 !important;
}
.kwho-blocked {
    color: #ff0000 !important;
}

Blue Eagle

.kwho-admin, a.kwho-admin {
    color: #FF0000 !important;
}
.kwho-globalmoderator, a.kwho-globalmoderator {
    color: #800000 !important;
}
.kwho-moderator, a.kwho-moderator {
    color: #0000FF !important;
}
.kwho-user, a.kwho-user {
    color: #5388B4 !important;
}
.kwho-guest, a.kwho-guest {
    color: #666666 !important;
}
.kwho-banned, a.kwho-banned {
    color: #A39D49 !important;
}
.kwho-blocked, a.kwho-blocked {
    color: #ff0000 !important;
}

You have just to change the hexidecimal color for each CSS rule which something to you like. By example i want that the user moderator member type will be shown in orange, so i replace this #0000FF by this #F47D00 in a.kwho-moderator. Just save the less file and check the result.

Found errors? Think you can improve this documentation? edit this page