I am trying to do the same thing. I change the timestamp in mongoDB, but it has no effect on the frontend.
Ps.: I changed the timestamp on topic, post and topics:recent.
Anyone can help me?
Do you mean like this?
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
@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;
}