Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

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

2 Posts
2 Users
0 Reactions
1,288 Views
Posts: 9
Topic starter
(@frontierforever)
Active Member
Joined: 2 years 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: 1522
(@tutrix)
Noble Member
Joined: 5 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>