Quote:
Originally Posted by neocorteqz
Thank you sir.
Btw. How do i go about customizing the color of this for each sty;e? it doesn't look too good in one of my styles.
|
ok to change the colors do
1. Open includes/functions_bbcodeparse.php:
FIND
Code:
$bbcode = preg_replace('#^/me (.*)$#im', "<font color=\"red\">* $post[username] \\1</font>", $bbcode);
Part Where You Change The colour
Code:
"<font color=\"color_YOU_WANT\">*
EXAMPLE change to yellow
Code:
$bbcode = preg_replace('#^/me (.*)$#im', "<font color=\"yellow\">* $post[username] \\1</font>", $bbcode);
2. Open newreply.php:
FIND
Code:
// CF Hack
$pagetext = preg_replace('#^/me(.*)$#im', "[color=\"red\"]* $originalposter\\1[/color]", $pagetext);
// CF Hack
Part Where You Change The colour
Code:
"[color=\"color_YOU_WANT\"]*
EXAMPLE change to yellow
Code:
// CF Hack
$pagetext = preg_replace('#^/me(.*)$#im', "[color=\"yellow\"]* $originalposter\\1[/color]", $pagetext);
// CF Hack
Hope this helps