Colors Firefox v IE 6

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
dyawlak
Posts: 66
Joined: 07 Dec 2007, 16:42

Colors Firefox v IE 6

Post by dyawlak »

I have set up status colors for the new status's I have added. Under IE6 they show fine. under Firefox 2.0.0.11 they don't - the default status's show correctly.

I have attached a picture to show.

Coding in config_inc.php is :

#Status color additions
$g_status_colors['ordered']= '66FF99';
$g_status_colors['new_']= 'FFFFCC'; Have tried this with 'new' as well
$g_status_colors['delivered']= '33CCFF';
$g_status_colors['feedback'] = 'FFCC99';
$g_status_colors['approved']='DCE400';
$g_status_colors['refused']='FF3300';
$g_status_colors['pending']='336699';
$g_status_colors['scheduled']='878675';
$g_status_colors['built'] = '5C7A64';
Attachments
colors.TIF
colors.TIF (22.49 KiB) Viewed 2784 times
NT
Posts: 21
Joined: 30 Oct 2007, 13:35

Re: Colors Firefox v IE 6

Post by NT »

Hi

You need to put a '#' in front of the numbers.
My status color codes from my 'config_inc.php' are :-

# --- status color codes ----------
#
$g_status_colors = array( 'new' => '#ffa0a0', # red,
'feedback' => '#ffffb0', # yellow
'acknowledged' => '#ffffb0', # yellow
'confirmed' => '#ff50a8', # purple
'assigned' => '#c8c8ff', # blue
'testing' => '#ffd850', # Orange
'ready' => '#98fb98', # PaleGreen
'resolved' => '#cceedd', # buish-green
'closed' => '#e8e8e8'); # light gray

Nick
dyawlak
Posts: 66
Joined: 07 Dec 2007, 16:42

Re: Colors Firefox v IE 6

Post by dyawlak »

Thanks Nick - that did the trick
Post Reply