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:
Add this to your joomla template's css file:
+
 
 +
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:
 
<source lang="css">
 
<source lang="css">
 
* TinyMCE specific rules */
 
* TinyMCE specific rules */
Line 7: Line 10:
 
}
 
}
 
</source>
 
</source>
 +
 +
The fix is sometimes not visible immediately, clear browser's cache and check it later.
  
  
  
 
[[Category:JReviews]]
 
[[Category:JReviews]]
 +
[[Category:Joomla]]

Revision as of 21:09, 23 August 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.