Plugin altered wodpress / woo CSS and can no longer read text

After installing the plugin, I can no longer read the status of my pages as it made all the text white, which blends in with the default wordpress / woo background. How can I override this, and change the text from white to black? Screenshots attached.
 

Attachments

  • Screenshot 2018-09-29 19.06.55.png
    Screenshot 2018-09-29 19.06.55.png
    96.5 KB · Views: 10
  • Screenshot 2018-09-29 19.07.10.png
    Screenshot 2018-09-29 19.07.10.png
    148.1 KB · Views: 10
Been 6 days with no answer. The plugin altered the CSS and I cannot read my text anymore. Is there an email for support?
 
Found the solution. If you want to see the text that add this to your function.php file.

// ************************************* FIX Post-State text in the admin area ************************
add_action('admin_head', 'my_custom_admin');

function my_custom_admin() {
echo '<style>
.post-state {
color: #555;
}
}
</style>';
}
// ************************************* FIX Post-State text in the admin area ************************
 
Top