Advertisement
iEmanuele

Fix TinyMCE Text Color

Dec 22nd, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2. /**
  3.  * [fix_tinymce_text_color description]
  4.  * @return [type] [description]
  5.  */
  6. add_action('admin_head', 'fix_tinymce_text_color');
  7. function fix_tinymce_text_color(){ ?>
  8.     <style>
  9.         .js .tmce-active .wp-editor-area{color:#000000!important}
  10.         .wpb_vc_column_text p span{
  11.             color:#000000!important
  12.         }
  13.     </style>
  14.     <?php
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement