by Ange Tuteur Tue 5 Apr - 14:34
Hi
@Kfalash,
Yes it's possible, however, the names can only be managed by administrators. Add the following CSS rules to your stylesheet :
Admin Panel > Display > Colors > CSS stylesheet
- Code:
span[data-user="1"] { font-size:0; }
span[data-user="1"]:after {
content:"NO NAME";
font-size:12px;
}
The rules above can be used to change the name of any user in the chatbox, you just need to edit the following parts :
1. The Id
Replace the
1 in both
with the user id of the user whose name you want to change. For example, I'm 88576
https://help.forumotion.com/u88576 so my code would look like this :
- Code:
span[data-user="88576"] { font-size:0; }
span[data-user="88576"]:after {
content:"NO NAME";
font-size:12px;
}
2. The name
To change the username all you need to do is replace "NO NAME" with whatever you like. Coffee Monster for example :
- Code:
span[data-user="88576"] { font-size:0; }
span[data-user="88576"]:after {
content:"Coffee Monster";
font-size:12px;
}
Follow the same steps above for each user whose name you want to change. Note that commands like "/me" will still show your original name.
If you have any questions let me know.