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

From JReviews Documentation
Jump to: navigation, search
(Created page with 'Add this to your joomla template's css file: <source lang="css"> * TinyMCE specific rules */ body.mceContentBody { background: #FFF !important; background-image: none; } </…')
 
 
(2 intermediate revisions by one other user not shown)
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 */
 
body.mceContentBody {
 
body.mceContentBody {
 
   background: #FFF !important;
 
   background: #FFF !important;
Line 7: Line 9:
 
}
 
}
 
</source>
 
</source>
 +
 +
The fix is sometimes not visible immediately, clear browser's cache and check it later.
  
  
  
 
[[Category:JReviews]]
 
[[Category:JReviews]]
 +
[[Category:Joomla]]

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.