Change background color in reach text area

The recommended method of customizing your AppGini-generated application is through hooks. But sometimes you might need to add functionality not accessible through hooks. You can discuss this here.
Post Reply
federico
Veteran Member
Posts: 74
Joined: 2020-10-29 14:52

Change background color in reach text area

Post by federico » 2021-02-07 18:44

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

SkayyHH
Veteran Member
Posts: 425
Joined: 2015-04-27 21:18

Re: Change background color in reach text area

Post by SkayyHH » 2021-02-07 21:21

nicEdit-main.has-input-handler ? not tried :-)

federico
Veteran Member
Posts: 74
Joined: 2020-10-29 14:52

Re: Change background color in reach text area

Post by federico » 2021-02-07 21:30

I'm sorry but there's no any text like this

SkayyHH
Veteran Member
Posts: 425
Joined: 2015-04-27 21:18

Re: Change background color in reach text area

Post by SkayyHH » 2021-02-07 22:55

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 :-)

federico
Veteran Member
Posts: 74
Joined: 2020-10-29 14:52

Re: Change background color in reach text area

Post by federico » 2021-02-08 07:15

It works!
Thank you so much Skayy!!!

Post Reply