V VinayaGhimire New member Dec 13, 2024 #1 Hello is there anyway we can get the staff colors to show up in posts when we tag a staff member or something. is this possible ?
Hello is there anyway we can get the staff colors to show up in posts when we tag a staff member or something. is this possible ?
frm Well-known member Dec 16, 2024 #3 I just did this like yesterday... You have to do it staff member by staff member as a single color and color by color (depending on their color) per group out of the box. But, it is possible. XF 2.3 Post in thread 'Colored Username everywhere' Dec 14, 2024 Devilwillcry4you said: I was able to get that thank you, I was also looking to change the color on main index as well. Click to expand... I played around with it more... You would have to do it user by user. Easy edit of extra.less CSS: [data-user-id="2"], [data-user-id="1"] { color: green; } Will change users 1 and 2 to green. But, that doesn't account for style variations. A little more advanced LESS... To get it to change between the seen dark version and light version to this: CSS: [data-user-id="2"], [data-user-id="1"] { .m-colorScheme(light, {...
I just did this like yesterday... You have to do it staff member by staff member as a single color and color by color (depending on their color) per group out of the box. But, it is possible. XF 2.3 Post in thread 'Colored Username everywhere' Dec 14, 2024 Devilwillcry4you said: I was able to get that thank you, I was also looking to change the color on main index as well. Click to expand... I played around with it more... You would have to do it user by user. Easy edit of extra.less CSS: [data-user-id="2"], [data-user-id="1"] { color: green; } Will change users 1 and 2 to green. But, that doesn't account for style variations. A little more advanced LESS... To get it to change between the seen dark version and light version to this: CSS: [data-user-id="2"], [data-user-id="1"] { .m-colorScheme(light, {...