Page 1 of 1

Label Not Appearing Correctly

Posted: Tue Jun 13, 2023 12:36 pm
by gofrank
I have a client who has a very specific requirement regarding TPCA notices. The page has a hidden edit box with a label linked to it. The label contains the TCPA text that appears directly above the submit button. This arrangement is to satisfy a third-party company that provides TCPA validation and so it can't be done via a text object (the normal way I handle this).

The issue is that the label (which has quite a bit of text) formats correctly in the default view. But in the smaller views, the label appears behind the submit button. This stripped down demo shows the problem.

Could very well be I've formatted something incorrectly, but as of now it has me perplexed. And the client needs this done ASAP.

Thanks!

Re: Label Not Appearing Correctly

Posted: Tue Jun 13, 2023 1:23 pm
by Pablo
The label object was designed for single line text, so that is why it has a fixed height.
I will investigate if multi-line support can be added in the future.

In the meantime, you can add custom style in Object HTML:

Code: Select all

height: auto !important;
And the client needs this done ASAP.
Maybe you should have asked earlier then ;)

Re: Label Not Appearing Correctly

Posted: Tue Jun 13, 2023 1:37 pm
by gofrank
Pablo, you are awesome! Thank you!