Chat Skins Wikia
Advertisement

With the coding on this page you're able to add nicknames in the chat. You can also use it to show what rights a user has on a wiki.

Rail[]

Use the following code to give users a nickname in the right rail.

.User[data-user="username"] .status,
.User[data-user="username"] .status {
    display: none !important;
}

.User[data-user="username"] .details::after,
.User[data-user="username"] .details::after {
   content: "Admin";
   color: orange;
}

You can give yourself a nickname with the following code.

.ChatHeader .User .details::after {
   content: "A nice person";
   color: lime;
}

Main Chat[]

Add the following code to add a nickname behind the username.

.Chat [data-user="username"] .username:after {
    content: ": always helpful";
    color: lime;
    padding-left: 2.5px;
}

Do you only want to see this when hovering over it? Just use this code instead.

.Chat [data-user="username"] .username:hover:after {
    content: ": always helpful";
    color: lime;
    padding-left: 2.5px;
}
Advertisement