forumdesados
Member
Hello guys,
First i would like to tell you sorry for my bad english i'm french...
I just installed xenforo, i love it so much but I have a problem. I would like to add Fontawesome icons before usernames of certain groups.
Here is my code :
It doesn't work for the admin group (which ID is 3). I tried with moderators and other groups... Same problem.
If i try to apply it for all the members by modifiyng the first line like this :
It works ! But all the usernames have it...
I've seen that other members encounter the same problem for exemple @ArtG : User Group Markup (Username CSS)
No solution have been found ? Can anyone help me ?
Thank you very much guys.
First i would like to tell you sorry for my bad english i'm french...
I just installed xenforo, i love it so much but I have a problem. I would like to add Fontawesome icons before usernames of certain groups.
Here is my code :
Code:
.username .style3:before {
content: "\f005";
font-family: FontAwesome;
margin-right: 4px;
display: inline-block;
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.username:hover .style3:before {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
}
It doesn't work for the admin group (which ID is 3). I tried with moderators and other groups... Same problem.
If i try to apply it for all the members by modifiyng the first line like this :
Code:
.username:before {
I've seen that other members encounter the same problem for exemple @ArtG : User Group Markup (Username CSS)
No solution have been found ? Can anyone help me ?
Thank you very much guys.