Support Fancy usernames

Solution
I like the was Xenforo has his own with the crown spinning etc..
  • admin.php?user-groups/
  • admin.php?user-groups/administrative.3/edit
  • CSS
CSS:
text-shadow: violet 1px 1px 10px;
color: red;
background: url('https://xnforo.ir/16066101745881.gif');

  • Extra.less
CSS:
.username--style3:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f521";
    padding-right: 1px;
    display: inline-block;
}
.username--style3:hover:before{
display:inline-block;
-webkit-transform:rotate(360deg);
-moz-transform:rotate(360deg);
-o-transform:rotate(360deg)...

duppy

XF-Fan
Loyal Member
This is in my extra.less file:

CSS:
.randcl{
    color: gold;
    background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
    -webkit-background-clip: text;
    -webkit-animation: randclanim 2s infinite linear;

    font-weight: bold;

}

@keyframes randclanim{
   from {
      -webkit-filter: hue-rotate(0deg);
    }

    to {
      -webkit-filter: hue-rotate(360deg);
    }
}
 
  • Tags
    fancy usernames support fancy usernames
  • Back
    Top Bottom