Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Tables with background-color
#5
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.
I18N, I18N Search, I18N Gallery, I18N Special Pages - essential plugins for multi-language sites.
Reply


Messages In This Thread
Tables with background-color - by bugmenot - 2011-05-11, 20:00:06
Tables with background-color - by Connie - 2011-05-11, 21:30:45
Tables with background-color - by bugmenot - 2011-05-11, 23:18:29
Tables with background-color - by Connie - 2011-05-12, 05:11:03
Tables with background-color - by mvlcek - 2011-05-12, 16:07:16
Tables with background-color - by bugmenot - 2011-05-13, 19:29:44
Tables with background-color - by Connie - 2011-05-13, 21:06:41
Tables with background-color - by Connie - 2011-05-14, 00:03:46
Tables with background-color - by mvlcek - 2011-05-14, 00:18:10
Tables with background-color - by Connie - 2011-05-14, 00:33:29
Tables with background-color - by mvlcek - 2011-05-14, 00:59:37
Tables with background-color - by bugmenot - 2011-05-16, 21:42:45
Tables with background-color - by Connie - 2011-05-16, 22:11:52



Users browsing this thread: 1 Guest(s)