If I understand you want to bold all text from admins and mods? You can change the font type in the css/font.css file.
Can I bold Message Text from Admin And Moderation?I have read source but i don't find anything
--
You received this message because you are subscribed to the Google Groups "AJAX-chat" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ajax-chat+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
you can add a couple of lines to chat.js
// Override to replace custom text:
// Return replaced text
// text contains the whole message
replaceCustomText: function(text) {
if (this.userRole == 2 || this.userRole == 3) {
userClass = this.getRoleClass(this.userRole)