How can I add some sub-level text at the bottom of the widget?

  • coralsprings954
    Asked on October 11, 2019 at 12:28 PM

    How can I add some sub-level text at the bottom of the widget?

    The Static option puts it on the right side. I need it at the bottom of the widget.

  • Mike_G JotForm Support
    Replied on October 11, 2019 at 2:51 PM

    To add a sub-label text at the bottom of the Configurable List widget, you can inject the following CSS codes to its custom CSS tab.

    How-to-Inject-CSS-Codes-to-Widgets

    div#listContainer:after {

        content: "This is a sample sub-label text" !important;

        position: absolute !important;

        left: 0px;

        bottom: 0px;

    }

    1570819728zt14 47 18 Screenshot 10

    Note: You can change the value of the "content" property in the codes to your preference.