Hi,
I try to make a new theme.
I changed this in the forms.inc.php file :
twice
I created a new file called css_hgh.css from css_bb.css
wich is in styles directory
But my problem is that S_APPLI_NOT is not recognized.
Where are store those informations :
S_ORIGINAL_BLUE = Original blue
S_BLACK_AND_BLUE = Black & blue
I think I must add mine ?
I try to make a new theme.
I changed this in the forms.inc.php file :
Code:
$cmbTheme = new CComboBox('theme',$theme);
$cmbTheme->AddItem(ZBX_DEFAULT_CSS,S_SYSTEM_DEFAULT);
$cmbTheme->AddItem('css_ob.css',S_ORIGINAL_BLUE);
$cmbTheme->AddItem('css_bb.css',S_BLACK_AND_BLUE);
$cmbTheme->AddItem('css_hgh.css',S_APPLI_NOT);
I created a new file called css_hgh.css from css_bb.css
wich is in styles directory
But my problem is that S_APPLI_NOT is not recognized.
Where are store those informations :
S_ORIGINAL_BLUE = Original blue
S_BLACK_AND_BLUE = Black & blue
I think I must add mine ?
Comment