Notifications
Clear all

Changing the color of the text field and buttons

2 Posts
2 Users
0 Likes
380 Views
Posts: 9
Topic starter
(@frontierforever)
Active Member
Joined: 6 months 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
Posts: 1081
(@tutrix)
Noble Member
Joined: 3 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>
Reply