Thank you so much @baris 👍 👍 👍 👍
Color changing tags?
-
Is this possible to create?
-
-
Do you mean like this?
-
Sorry I meant color changing group tags
-
Configuration is in admin https://yourwebsite.com/admin/manage/groups/XXXXX
Example https://yourwebsite.com/admin/manage/groups/administrators
you can change the color and the icon
-
I meant group tags that change color after a certain interval, "rainbow tags"
-
@Whimpers here you go, add this to css
@keyframes example { 0% {background-color: red;} 10% {background-color: orange;} 20% {background-color: yellow;} 30% {background-color: lime;} 40% {background-color: lightgreen;} 50% {background-color: aqua;} 60% {background-color: cyan;} 70% {background-color: LightSkyBlue;} 80% {background-color: BlueViolet;} 90% {background-color: Purple;} 100% {background-color: red;} } a[href="/groups/gnu-linux-user"], a[href="/groups/gnu-linux-user"] > small { animation: example 2s infinite; }
-
Not working
-
Got it to work thx