Notifications
Clear all

[Closed] Changing the color of the text field and buttons

2 Posts
2 Users
0 Reactions
823 Views
Posts: 9
Topic starter
(@frontierforever)
Active Member
Joined: 1 year ago

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!

1 Reply
Tutrix
Posts: 1357
(@tutrix)
Noble Member
Joined: 4 years ago

Hi @frontierforever

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>