While in the post editor, I would like the title field to have a different background color.
I changed the background color of the big content box by creating a editor-style.css and adding .mceContentBody.wp-editor { background-color: #ffffcc;}
I have tried inspecting the css code and adding the css to the editor-style.css for the title field background color, but it won’t change? How can I change the title field color in the post editor, please?
]]>Try this
#titlediv #title {
background-color: #000 !important;
}
*Ensure that your custom css is called only for post.php
All the best!
]]>