|
The editor background is black (or other unwanted colour)
|
|
The reason for this is the following: The default editor TinyMCE is looking up your template css file and using it. Some websites use a dark bacground colour for the body tag, even though the content pane area can still be white or another light colour. We then get the problem of dark text on dark background - not nice. You can solve this problem this way: go to Mambots->Site Mambots and select the TinyMCE WYSIWYG editor if that's the one you are using. Make sure the entry for Template CSS Classes is set to "No". Now go to your template and find the directory where the file template_css.css is. Create a copy of this file and name it editor_content.css, save it in the same directory. Now edit this file. Find the place where the body style is defined and make sure to change the background colour and/or image to what you need. It could be as simple as just putting in background:white;. Keep the definitions of classes that you might apply to things in the editor, the other things you can get rid of. Now your editor will have the correct background and still have access to important template classes. |