2011-05-12, 16:07:16
bugmenot Wrote:Hi,
Danke für deinen Post. Es geht nicht speziell um eine Seite, deswegen auch kein Link.
Persönlich hab ich überhaupt keine Probleme mit CSS, es geht darum das mein Freund, für den ich die Seite machen recht einfach die Hintergrundfarben der einzelnen Kästchen ändern kann.
If you just have a fixed number of colors you want to set, you can (probably) use the styles combobox of CKEditor. In gsconfig.php make sure to include the Styles control and link to a styles definition:
Code:
define('GSEDITOROPTIONS',
" toolbar: [ ... ['Styles', ...], ... ],
stylesCombo_stylesSet: 'my_styles:/theme/my_theme/styles.js',
...
");
Then create the styles definition styles.js:
Code:
CKEDITOR.addStylesSet( 'my_styles',
[
// Block Styles
{ name : 'red', element : 'td', attributes : { 'background-color':'red' } },
{ name : 'green', element : 'td', attributes : { 'background-color':'green' } },
...
]);
Not tested with <td> but I use it with <p> with no problem.