Defining size for Rich (HTML) area

Got something cool to share with AppGini users? Feel free to post it here!
Post Reply
balfons
Veteran Member
Posts: 91
Joined: 2018-10-22 15:27

Defining size for Rich (HTML) area

Post by balfons » 2020-04-14 08:54

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 29607 times
small.png
small.png (26.49 KiB) Viewed 29607 times
Is it normal? Am I missing somthing that I'm not able to identify?

Regards

User avatar
jsetzer
AppGini Super Hero
AppGini Super Hero
Posts: 1807
Joined: 2018-07-06 06:03
Location: Kiel, Germany
Contact:

Re: Defining size for Rich (HTML) area

Post by jsetzer » 2020-04-14 09:12

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
Kind regards,
<js />

My AppGini Blog:
https://appgini.bizzworxx.de/blog

You can help us helping you:
Please always put code fragments inside [code]...[/code] blocks for better readability

AppGini 24.10 Revision 1579 + all AppGini Helper tools

balfons
Veteran Member
Posts: 91
Joined: 2018-10-22 15:27

Re: Defining size for Rich (HTML) area

Post by balfons » 2020-04-14 09:33

Hi,

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

User avatar
D Oliveira
AppGini Super Hero
AppGini Super Hero
Posts: 347
Joined: 2018-03-04 09:30
Location: David

Re: Defining size for Rich (HTML) area

Post by D Oliveira » 2020-04-14 22:22

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>

balfons
Veteran Member
Posts: 91
Joined: 2018-10-22 15:27

Re: Defining size for Rich (HTML) area

Post by balfons » 2020-04-15 09:04

Hi

Perfect!!! Now it works!!

Thanks a lot to all!!

kanklovitch
Veteran Member
Posts: 159
Joined: 2019-02-03 17:26

Re: Defining size for Rich (HTML) area

Post by kanklovitch » 2020-05-06 19:40

Perfect, that is exactly what I have been trying to figure out. Thanks very much.

Ken

nycwebmaster
Veteran Member
Posts: 90
Joined: 2015-11-23 01:02

Re: Defining size for Rich (HTML) area

Post by nycwebmaster » 2020-06-24 19:45

Excellent!

Post Reply