Si uso esto para mis moderadores, el código CSS funciona
.names {
span.moderator a {
background: linear-gradient(to right,#BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
Ahora, si uso el mismo código, solo incluyendo el grupo DexPremium, aquellos que participan en el grupo no cambian sus nombres
.names {
span.DexPremium a {
background: linear-gradient(to right,#BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
¿Por qué?
Don
2
Hola,
Aquí tienes un tema sobre la misma pregunta.
La solución y el porqué están en las respuestas.
4 Me gusta
Don
3
Hola,
Debería funcionar para el grupo DexPremium si el grupo está configurado como principal.
.names {
span.group--DexPremium a {
background: linear-gradient(to right,#BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
2 Me gusta