Page 1 of 1

Defining size for Rich (HTML) area

Posted: 2020-04-14 08:54
by balfons
Dear all,

I have an app where in the same table I have two fields using Rich HTML area.

I'm using the Appgini Helper Libray (so I don't know if I need to move my post to the other section).

Aparently the preferences are the same for both fields but they have different appearancve as it is shown on the pictures.
big.png
big.png (32.73 KiB) Viewed 31068 times
small.png
small.png (26.49 KiB) Viewed 31068 times
Is it normal? Am I missing somthing that I'm not able to identify?

Regards

Re: Defining size for Rich (HTML) area

Posted: 2020-04-14 09:12
by jsetzer
Hi,

can you please try this CSS setting (for example in hooks/header-extras.php or whereever you have placed your css code):

Code: Select all

<!-- file: hooks/header-extras.php -->
<style>
.nicEdit-main { min-height: 480px; }
</style>
I hope this does the job in your environment, too.

Best,
Jan

---
PS:
... I don't know if I need to move my post to the other section ...
Please post questions concerning any plugin in one of the the plugins subforum

Re: Defining size for Rich (HTML) area

Posted: 2020-04-14 09:33
by balfons
Hi,

Thanks. It is not working for me... thanks in any case..

Re: Defining size for Rich (HTML) area

Posted: 2020-04-14 22:22
by D Oliveira
balfons wrote:
2020-04-14 09:33
Hi,

Thanks. It is not working for me... thanks in any case..
try

Code: Select all

<!-- file: hooks/header-extras.php -->
<style>
.nicEdit-main { min-height: 480px !important; }
</style>

Re: Defining size for Rich (HTML) area

Posted: 2020-04-15 09:04
by balfons
Hi

Perfect!!! Now it works!!

Thanks a lot to all!!

Re: Defining size for Rich (HTML) area

Posted: 2020-05-06 19:40
by kanklovitch
Perfect, that is exactly what I have been trying to figure out. Thanks very much.

Ken

Re: Defining size for Rich (HTML) area

Posted: 2020-06-24 19:45
by nycwebmaster
Excellent!