MyBB Community Forums

Full Version: Change the color of /me
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When ppl post "/me doing this and that", the text appears in red. How can I change it to black?
./inc/class_parser.php

Search for /me and you'll find it. Smile
Open up /inc/class_parser.php, line 139 and 140:

$message = preg_replace('#(>|^|\r|\n)/me ([^\r\n<]*)#i', "\\1<span style=\"color: red;\">* {$this->options['me_username']} \\2</span>", $message);
$message = preg_replace('#(>|^|\r|\n)/slap ([^\r\n<]*)#i', "\\1<span style=\"color: red;\">* {$this->options['me_username']} {$lang->slaps} \\2 {$lang->with_trout}</span>", $message);

Replace red on both lines (to take effect for the me and slap commands) with whatever color you want. You can use HEX values or set a CSS class.

(Malcolm beat me Sad)
Thanks, it worked. Smile