How to change the background of fckeditor means when you edit any page or create any page fckeditor; editing screen is ash color which bit difficult to see the text.
How to change the background of fckeditor means when you edit any page or create any page fckeditor; editing screen is ash color which bit difficult to see the text.
Comments
Comment #1
Anonymous (not verified) commentedFCKEditor uses an
iframewith its ownbodytag, but it does not specify any CSS for this tag, so the tag inherits Nitobe's CSS for thebodyelement.Nitobe should address this by applying a specific class to the
bodyelement and applying the background image and color to that class instead of thebodyelement directly.Comment #2
Yuki commentedSo how can I solve this issue mean I want white background in fckeditor.
Comment #3
Anonymous (not verified) commentedYou should be able to get around it by changing this line in
page.tpl.php:<body class="<?php print $body_classes; ?>">to look like this:
<body class="nitobe <?php print $body_classes; ?>">and in
html.css, change this block of code:to look like this:
You will also need to edit maintenance-page.tpl.php so that this line:
<body class="maintenance">looks like this:
<body class="nitobe maintenance">Comment #4
Yuki commentedThanks will check it.
Comment #5
marquardt commentedThis also works fine for TinyMCE installed via the wysiwyg module.
Is there a simple way to increase the font size in the editor window?
Comment #6
Anonymous (not verified) commentedYou'll need to check the TinyMCE documentation for that.