Rum Runner Entertainment Active member Apr 25, 2015 #1 I was told that there is a CSS staff class for changing message font for certain user groups? Where would that be done and what exactly is that class? Thanks!
I was told that there is a CSS staff class for changing message font for certain user groups? Where would that be done and what exactly is that class? Thanks!
P Paul B XenForo moderator Staff member Apr 25, 2015 #2 The staff class is just for members who are designated as staff. It is unrelated to user groups. It's explained at the bottom of this page: https://xenforo.com/help/user-group-styling/ Upvote 0 Downvote
The staff class is just for members who are designated as staff. It is unrelated to user groups. It's explained at the bottom of this page: https://xenforo.com/help/user-group-styling/
Rum Runner Entertainment Active member Apr 26, 2015 #3 Brogan said: The staff class is just for members who are designated as staff. It is unrelated to user groups. It's explained at the bottom of this page: https://xenforo.com/help/user-group-styling/ Click to expand... Yea, it doesn't see to want to work. I've added this code into the EXTRA.css template. Code: .staff { font-family: helvetica; } Thanks! Upvote 0 Downvote
Brogan said: The staff class is just for members who are designated as staff. It is unrelated to user groups. It's explained at the bottom of this page: https://xenforo.com/help/user-group-styling/ Click to expand... Yea, it doesn't see to want to work. I've added this code into the EXTRA.css template. Code: .staff { font-family: helvetica; } Thanks!
P Paul B XenForo moderator Staff member Apr 26, 2015 #4 You need to use the additional class for the message text, as it explains on that page. Upvote 0 Downvote
Rum Runner Entertainment Active member Apr 26, 2015 #5 Okay I added in the .messageContent class as well and still does not seem to work. Upvote 0 Downvote
Rum Runner Entertainment Active member Jul 19, 2015 #6 Brogan said: The staff class is just for members who are designated as staff. It is unrelated to user groups. It's explained at the bottom of this page: User Group Styling | XenForo Click to expand... So if I may ask another question, how would I change the font that normal users by default have set? By normal users, I mean all other users that aren't designated as staff? Upvote 0 Downvote
Brogan said: The staff class is just for members who are designated as staff. It is unrelated to user groups. It's explained at the bottom of this page: User Group Styling | XenForo Click to expand... So if I may ask another question, how would I change the font that normal users by default have set? By normal users, I mean all other users that aren't designated as staff?
P Paul B XenForo moderator Staff member Jul 19, 2015 #7 Change the Style Properties for the message text. Upvote 0 Downvote
Rum Runner Entertainment Active member Jul 19, 2015 #8 Brogan said: Change the Style Properties for the message text. Click to expand... Okay thanks, but the code I've added in: Code: .staff .messageContent { font-family: Arial; } Doesn't seem to want to work. Is there something I'm missing? Upvote 0 Downvote
Brogan said: Change the Style Properties for the message text. Click to expand... Okay thanks, but the code I've added in: Code: .staff .messageContent { font-family: Arial; } Doesn't seem to want to work. Is there something I'm missing?
P Paul B XenForo moderator Staff member Jul 19, 2015 #9 Code: .staff .messageText { font-family: Arial; } Upvote 0 Downvote