hi webdomain,
For pgeditor :
You edit the css file of your skin in the directory
skin/your_skin_name/ and search this code:
div #toolbarIcons_ptxt {
color: inherit;
background-color: #089EDE;
}
div #toolbarSmileys_ptxt {
color: inherit;
background-color: #089EDE;
}
You write :
div #toolbarIcons_ptxt {
color: inherit;
background-color: silver;
}
div #toolbarSmileys_ptxt {
color: inherit;
background-color: silver;
}
Note : an another solution is to delete this code in the css file of the skin :
div #toolbarIcons_ptxt {
color: inherit;
background-color: #089EDE;
}
div #toolbarSmileys_ptxt {
color: inherit;
background-color: #089EDE;
}
and then, modify directly the css file named '
pgeditor.css' in the directory
inc/config_pgeditor_guppy/style/
at the
line 35 : background-color:#ECE9D8;
and the
line 256 : background-color:#ECE9D8;
For minieditortextarea :
You edit this file :
admin/editors/guppy_config/minieditortextarea_config.inc
and you modify the code of the
line 46 :
$colorFondMenu = $titre[1]; //couleur de fond du miniéditeur
like this :
$colorFondMenu = 'silver'; //couleur de fond du miniéditeur
Best regards