How to change the color of the text in the editor in the admin section
-
When you edit a post or page, Tinymce or the theme is coloring the text in the edit textarea a shade of gray #333. I’ve got an end user who cannot see that and wants it black. Inspecting the element, this is where the color needs to change:
media=”all”
textarea, input[type=”text”], input[type=”password”], input[type=”file”], input[type=”email”], input[type=”number”], input[type=”search”], input[type=”tel”], input[type=”url”], select {
background-color: #fff;
color: #333;
}However, it says it is in post.php load-styles.css. I searched those files, and all the other css files and I don’t find this entry so I can edit it. Any idea where this file actually is? As in a path to it?
- The topic ‘How to change the color of the text in the editor in the admin section’ is closed to new replies.