Configurable list: multiple rows and multiple lines titles

  • FSPD
    Asked on February 8, 2018 at 3:31 PM

    Hi there!

    Here's my form: https://form.jotform.com/80386492770263

    I created a configurable list with multiple rows (thanks to this forum), but the titles of each fields are in one single line, but since some of them are too long, I want to display them on two lines... 


    Please help!



    Jotform Thread 1378342 Screenshot
  • Elton Support Team Lead
    Replied on February 8, 2018 at 5:39 PM

    Inject this CSS code to the affected config list widget under its custom CSS tab. This should fix it.

    td[class^="col"]:before {

        display: block;

        max-width: 305px;

    }

    Result:

    Configurable list: multiple rows and multiple lines titles Image 1 Screenshot 20

  • FSPD
    Replied on February 9, 2018 at 10:11 AM

    It worked! Thanks!