How can I change the color of the editor background?

Started by lion823, May 10, 2017, 05:21:11 AM

Previous topic - Next topic

lion823

Hello guys!

I can't find anywhere to change my post editor's background color. Here is the problem:







The code is: #ecedf3 - i can't find in any other file (i tried to search with notepad++ in files)
I can't fin any picture with this color to fill out the window... I really need help for this.

Thanks in advance, Mark.

Shambles

Try right-clicking in the box itself, and select "Inspect" or "Inspect Element" from the context menu.

The browser tool should show the file (& line) containing the colour for that textarea.

lion823

I tried but couldnt find it.

Can anyone help me with this? As usual how can I change it?

Shambles


Gluz

It's a textarea, and should have id="message" and class="editor", you can search for any of those terms in the CSS of your theme to see if any rule force that color.

Or you can add at the end another rule with !important to override any other rule, ex:
textarea
{
    background-color: white !important;
}

Advertisement: