Nouveau
Messages : 4
Inscription :
Hi, can you tell me how to change background in pgeditor ?
see images for details
https://doc-0o-88-docs.googleu...jg4M2ViZWUzYjQy
and
https://doc-0c-88-docs.googleu...WFjNTQxMzk0NmJj
Réponses
Administrateur
Messages : 1390
Inscription :
hi webdomain,
For pgeditor :
You edit the css file of your skin in the directory skin/your_skin_name/ and search this code:
Code (Sélectionner le code)div #toolbarIcons_ptxt { color: inherit; background-color: #089EDE; } div #toolbarSmileys_ptxt { color: inherit; background-color: #089EDE; }
You write :
Code (Sélectionner le code)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 :
Code (Sélectionner le code)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 :like this :Code (Sélectionner le code)$colorFondMenu = $titre[1]; //couleur de fond du miniéditeurCode (Sélectionner le code)$colorFondMenu = 'silver'; //couleur de fond du miniéditeur
Best regards