not sure if i understood you properly but going off of xenon's instructions, open up the
file functions_bbcodeparse.php with notepad or whatever and then in there do a find (control and f) function handle_bbcode_url, there you should be able to follow the below quite comfortably
PHP Code:
if ($type == 'url')
{
// standard URL hyperlink
return "<a href=\"$rightlink\" target=\"_blank\">$text</a>";
}
and replace with
PHP Code:
if ($type == 'url')
{
// standard URL hyperlink
return "<a href=\"$rightlink\" target=\"_blank\"><font color="#006600">$text</font></a>";
}