Configurable List Widget: Adjust Field Size

  • DemoRap
    Asked on April 7, 2025 at 10:20 PM

    What custom css do I need to add to my jotform to make a field In configurable list widget 10px

  • Kyle JotForm Support
    Replied on April 8, 2025 at 8:45 AM

    Hi Deomid,

    Thanks for reaching out to Jotform Support. You can change the font size of the Configurable List widget by injecting the CSS code in your widget below:

    /* resize the font size */
    .configurable-list-field-label {
       font-size10px !important;
    }
    /* Ends here */ 

    To inject the CSS Code in your widget, check out the steps and screencast below:

    1. Open your form in Form Builder, click the wand icon of your Configurable List Widget to open the Widget Settings panel.
    2. Go to the Custom CSS tab.
    3. Paste the CSS Code into the textarea.
    4. Click the Update button to save the changes.

    Configurable List Widget: Adjust Field Size Image 1 Screenshot 20 Give it a try and let us know how it goes.

  • Kyle JotForm Support
    Replied on April 8, 2025 at 8:47 AM

    Hi Deomid,

    Sorry about the confusion; can you share with us which field in your configurable list widget you want the field size to be adjusted for?

    Once we hear back from you, we'll be able to help you with this.

  • DemoRap
    Replied on April 8, 2025 at 8:50 AM
    The col3
    ...
  • Ronald JotForm Support
    Replied on April 8, 2025 at 11:23 AM

    Hi Deomid,

    Are you referring to the Travel Time field? If so, you can use the code below to make the inputted text on it to be 10px.

    input.form-number-input.form-textbox.stepper.translatable._3mdrn7jdi._uidset {
    font-size: 10px !important;
    }

    See the screenshot below for the results:

    Configurable List Widget: Adjust Field Size Image 1 Screenshot 20Keep us updated and let us know if you need any more help. 

  • DemoRap
    Replied on April 8, 2025 at 11:30 AM
    No. I’m referring to the field.—->>> that’s a static field and I want to made it take up less space.  Not font. Just width.  Thank you.
    ...
  • Ronald JotForm Support
    Replied on April 8, 2025 at 12:19 PM

    Hi Deomid,

    You can use the code below to remove the space of the static field from the form:

    .configurable-list-field-wrapper.col3.static-field-selector {
        display: none;
    }
    .configurable-list-field-wrapper {
        width: 100px !important;
    }

    See the screenshot for the results:

    Configurable List Widget: Adjust Field Size Image 1 Screenshot 20

    Reach out again if there’s anything else we can do for you.

  • Deomid Rapoport
    Replied on April 12, 2025 at 2:18 PM

    I don’t want to remove the Col3.static field size completely. Just want it 10px.

  • Ronald JotForm Support
    Replied on April 12, 2025 at 3:17 PM

    Hi Deomid,

    Apologies for the misunderstanding. I checked the form, and it seems you re-ordered the fields. The code below allows you to minimize the field into 10px:

    .configurable-list-field-wrapper.col4.static-field-selector {
    width: 10px !important;
    min-width: 10px !important;
    }

    See the screenshot below where the white element ti the Col.3static:

    Configurable List Widget: Adjust Field Size Image 1 Screenshot 20

    Reach out again if there’s anything else we can help you with.

  • DemoRap
    Replied on April 12, 2025 at 3:40 PM
    That’s it!! Thank you.
    ...
  • Deomid Rapoport
    Replied on April 12, 2025 at 4:36 PM

    How do I reference a text field in that configurable list to resize?
  • Roi JotForm Support
    Replied on April 12, 2025 at 8:23 PM

    Hi Deomid,

    I have Moved your new question to a new thread and answered it there.

    Thanks for your patience and understanding, we appreciate it.

  • DemoRap
    Replied on April 17, 2025 at 12:15 PM
    I have another issue that maybe you can help me with.  On my board
    I would like to hide description on the left side in card view.  I have hidden it in the settings but it is still there.

    ...
  • Keenly JotForm Support
    Replied on April 17, 2025 at 1:49 PM

    Hi Deomid,

    I’ve moved your new question about hiding the description on the left side in Card View to a separate thread to keep things organized and avoid confusion. You can check our response here.

    Let us know if you have any other questions.

Your Answer