XenForo How to make very simple animated rainbow user banner

chibik

Registered
Ah i figured it out. The reason people saying nothing is displaying because you have to put something in
"User banner text" inside the User Group: Administrative otherwise it will not show up
 

Pablote!

Registered
Hey, here the first step is go to core_labels.less but i dont know were is core_labels.less in my XenForo, can you help me please.
 

Shield

Registered
So in this very simple tutorial, I want to show how to make very simple animated rainbow user banner for XF2.
1. Go to core_labels.less
2. Past this code below.
CSS:
&.label--rainbow {
    color: white;
    background-image: url(https://i.pinimg.com/originals/e5/89/95/e5899572ecace2b0895b36db7703a001.gif);
    border-radius: 30px;
    border: 1px solid #0000ffff;
    text-shadow: 1px 1px 6px #000000;
    }
3. Go to User groups
4. Press in User banner styling, Other, using custom CSS class name, paste this code below.
CSS:
label label--rainbow
5. You have it :p
Preview of this banner.
thanks for the Guide
 
Back
Top Bottom