Difference between revisions of "How do I fix the wysiwyg editor's background problem"

From JReviews Documentation
Jump to: navigation, search
 
Line 1: Line 1:
 
 
Some of Joomla templates can cause a conflict by applying site's backround as the wysiwyg editor's bacground also.
 
Some of Joomla templates can cause a conflict by applying site's backround as the wysiwyg editor's bacground also.
  
 
To fix this issue, add this to your joomla template's css file:
 
To fix this issue, add this to your joomla template's css file:
 
<source lang="css">
 
<source lang="css">
* TinyMCE specific rules */
+
/* TinyMCE specific rules */
 
body.mceContentBody {
 
body.mceContentBody {
 
   background: #FFF !important;
 
   background: #FFF !important;

Latest revision as of 23:25, 10 October 2010

Some of Joomla templates can cause a conflict by applying site's backround as the wysiwyg editor's bacground also.

To fix this issue, add this to your joomla template's css file:

/* TinyMCE specific rules */
body.mceContentBody {
   background: #FFF !important;
   background-image: none;
}

The fix is sometimes not visible immediately, clear browser's cache and check it later.