Page 1 of 1

Change background color in reach text area

Posted: 2021-02-07 18:44
by federico
Hi
I'm trying to change the reach text area background color of the Slate theme, from dark grey in white. I'm searching in the css file but I'm not able to find it.
Any suggestion?

thanks

Re: Change background color in reach text area

Posted: 2021-02-07 21:21
by SkayyHH
nicEdit-main.has-input-handler ? not tried :-)

Re: Change background color in reach text area

Posted: 2021-02-07 21:30
by federico
I'm sorry but there's no any text like this

Re: Change background color in reach text area

Posted: 2021-02-07 22:55
by SkayyHH
Try

Code: Select all

<style>
.nicEdit-main.has-input-handler {
color:red;
background:blue;
}
</style>
in header-extras.php

This should style the rich text area :-)

Re: Change background color in reach text area

Posted: 2021-02-08 07:15
by federico
It works!
Thank you so much Skayy!!!