It would be really cool if this was built in. All I see is the Flair color background.
I installed these 2 components, but unable to get the username to change color based on the primary group selected.
It would be really cool if this was built in. All I see is the Flair color background.
I installed these 2 components, but unable to get the username to change color based on the primary group selected.
once you install that, it is as simple as:
body.group-GROUP-NAME .topic-meta-data .full-name a {
color: COLOR;
}
where GROUP-NAME is the name of your group and COLOR is the color you want in an acceptable format. If the group is called @dragons and the usernames are to be purple then:
body.group-dragons .topic-meta-data .full-name a {
color: purple;
}