XenForo How to make very simple animated rainbow user banner

MrCazper

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: 0px solid white;
    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.
It's the first time I've managed to do something like that, it's great.

Thank you very much, it is not much but to be my first time for me it is very big

Thank you!
 
Back
Top Bottom