Configurable List Widget: How do I increase the size of the "Add Row" button?

  • The Hon AES Bathurst
    Asked on June 11, 2022 at 10:18 PM

    how do I increase the size of the "Add Row" button? Row height I have increaed to 45px but can't find the css code for the Add Row button.

  • Ravi JotForm Support
    Replied on June 12, 2022 at 12:21 AM

    Hello The Hon AES Bathurst,

    Thanks for reaching out to Jotform Support. To increase the size of the "Add Row" button please add the below CSS code in your configurable list widget. The below code is to increase the width of the Add button in the configurable list widget as you mentioned you are able to increase the height of button

    .add{
    width:350px;
    }

    Let me show you how to do that:

    • Select the Configurable list widget.
    • Click on the Widget Settings option, which appears on the right side of the widget.
    • Go to Custom CSS Tab, Add the above CSS code in the Code box.
    • Click on the Update widget button at the bottom to save the changes in the widget.

    1655007552 62a56940a0847  Screenshot 10

    Give it a try and let us know how it goes.



  • Alexander Bathurst
    Replied on June 12, 2022 at 4:16 PM

    Excellent thank you, actually I'd meant I could increase row height but not the button but usde logic andinserted height into your code and voila, size increases but not the + symbol itself, any ideas?

  • Jaydee_M
    Replied on June 12, 2022 at 7:13 PM

    Hello Alexander Bathurst,

    Is this the output you are looking for? If yes, the CSS code is attached below. Would you be able to share the link to the form that you are working on? We'll wait for your response. Thanks!

    1655075306 62a671eaa80d7  Screenshot 10

    CODE:

    .add{
    margin-top: 20px;
    margin-left: 5px;
    height: 50px;
    width: 150px;
    }
  • Alexander Bathurst
    Replied on June 13, 2022 at 5:44 PM

    it was the actual + that I wanted to make larger + in reflection I've had to remove the + row feature but thank you for your help.

  • Jaydee_M
    Replied on June 13, 2022 at 8:02 PM

    If you wish to make the "+" text on the button, you can adjust the font size. Here's the output:

    1655164886 62a7cfd6a2545  Screenshot 10

    If you wish to apply this on your form, here's the CSS code:

    .add{
    margin-top: 20px;
    margin-left: 5px;
    height: 70px;
    width: 70px;
    }

    button.add{
    font-size: 4em !important
    }