Adding sub label under the Textarea Autosize widget?

  • CLform
    Asked on January 17, 2019 at 9:07 PM

    hi!

    how can I add sub label for texture autosize widget?


    Jotform Thread 1704623 Screenshot
  • Kiran Support Team Lead
    Replied on January 18, 2019 at 3:48 AM

    Unfortunately, the sub-label field is not available with the widget. However, you may consider adding the following CSS code to the for to display the text as sub-label for the widgets.

    #cid_53:after {

        content: 'sublabel here';

        color: #6f6f6f;

        font-size: 0.786em;

    }

    #cid_55:after {

        content: 'sublabel here';

        color: #6f6f6f;

        font-size: 0.786em;

    }

    #cid_53 > div, #cid_55 > div {

        height: 45px;

    }

    Thank you!