Notifications
Clear all
May 21, 2023 4:12 am
Can't figure out how to change the color of the text field background, or the buttons above it, or the hover colors for those buttons. Thanks for the help!
Forum Page URL
1 Reply
May 21, 2023 4:52 am
try
#wpforo #wpforo-wrap .mce-container, #wpforo #wpforo-wrap .mce-container *, #wpforo #wpforo-wrap #wpforo #wpforo-wrap .mce-widget, #wpforo #wpforo-wrap .mce-widget *, #wpforo #wpforo-wrap .mce-reset { background: #10153A !important; } #wpforo #wpforo-wrap .wpf-topic-create .mce-toolbar .mce-btn button i, #wpforo #wpforo-wrap .wpf-post-create .mce-toolbar .mce-btn button i { color: #FF0052; }
for the background of the textfield you need a script
<script type="text/javascript"> jQuery(window).load(function() { tinyMCE.activeEditor.dom.addStyle('body{background-color:#000000 !important; color:#FF0052 !important;}'); }); </script>