Is there a way align the rows and cells equally so that they don't look

  • alex marrs
    Asked on February 23, 2023 at 3:11 AM

    Is there a way align the rows and cells equally so that they don't look like stairs due to text wrapping?

  • Alexander_G
    Replied on February 23, 2023 at 7:01 AM

    Hi Alex,

    Thanks for reaching out to Jotform Support. I've checked your form and was unable to locate the problem with stairs like Configurable Widget. Here's a screenshot of the filled widget:

    1677153387 63f7546bd1660  Screenshot 10If you want to change how it looks in your form, it's possible to make these adjustments in a Configurable List widget using CSS as well. Here are the steps you can follow:

    1. Open the Form Builder.

    2. Edit the Configurable List widget: Click on the Configurable List widget to open its properties.

    3. Click on the Custom CSS tab.

    4. Add this CSS code:

    /* adjust row height */ 
    table tr {
    height: 50px; /* replace 50px with your desired height */
    }

    /* adjust cell width */
    table td {
    width: 33%; /* replace 33% with your desired width */
    }

    5. Save your changes: Once you've added the CSS code, click on the Save button to save your changes.

    By following these steps and using CSS, you can adjust the row height and cell width in your Configurable List widget.

    Let us know if you have any further requests.