Notifications
Clear all

wpForo 1.x.x [Solved] White text on White background...again and again...

3 Posts
2 Users
1 Reactions
667 Views
Posts: 7
Topic starter
(@morosirus)
Active Member
Joined: 4 years ago

Found two more combo boxes that are rendering white text on white background. 

  1. The font size drop-down in the formatting menu.
  2. The tag auto-fill drop-down in the tag line.

Can you help?

2 Replies
Sofy
Posts: 4639
 Sofy
Admin
(@sofy)
Support Team
Joined: 7 years ago

@morosirus,

The font size drop-down in the formatting menu.

The CSS code below should help you to solve the issue: 

.mce-menu .mce-container-body {
background-color: #2f2c2c !important;
color: #fff !important;
}

The tag auto-fill drop-down in the tag line.

Use this CSS code: 

ul.wpf_ac_results {
background-color: #2f2c2c !important;
color: #fff !important;
}

The CSS codes should be added in the "Custom CSS code" textarea, located in the Dashboard > Forums > Settings > Styles Tab. 

The red marked value can be changed as you like.   

Don't forget to press Ctrl+F5 (twice) on the forum frontend before checking to reload the updated CSS file.   

Posts: 7
Topic starter
(@morosirus)
Active Member
Joined: 4 years ago

Seemed to do the trick. Thank you.