Page 1 of 1

Change Colors

Posted: 19 May 2006, 17:09
by mickey
Is there a way to change some of the colors like for Status (New, Feedback, Acknowledged),Menu etc? I tried changing it for example by adding new value to $g_new_color in config_inc.php. But it doesnt seem to make a difference. Please suggest.

Thanks,
Mickey.

Posted: 20 May 2006, 11:48
by Narcissus
Hi Mickey:

You need to override the $g_status_colors array in your config_inc.php file. For reference, it defaults to:

Code: Select all

$g_status_colors = array( 'new' => '#ffa0a0', # red,
                          'feedback' => '#ff50a8', # purple
                          'acknowledged' => '#ffd850', # orange
                          'confirmed' => '#ffffb0', # yellow
                          'assigned' => '#c8c8ff', # blue
                          'resolved' => '#cceedd', # buish-green
                          'closed' => '#e8e8e8'); # light gray
Hope that helps,
Lincoln.

Posted: 20 May 2006, 21:59
by mickey
Yes, it worked perfectly. Thanks a bunch Narcissus..