Configurable List widget: Highlight first two input fields

  • erikalim907
    Asked on March 19, 2025 at 8:35 AM

    2) For "Artwork Details" using configurable list widget, I would like to colour the input columns "Status" and "Loc Code" to highlight these 2 columns.

    Can you provide me with the CSS code pls?

    Thank you.

  • Sonnyfer JotForm Support
    Replied on March 19, 2025 at 8:49 AM

    Hi Erica,

    It's easy to add CSS Code to widgets to highlight your Status and Loc Code, let me show you how:

    1. In Form Builder, click on the widget’s Wand Icon to open the Widget Settings.
    2. Select Custom CSS tab.
    3. Enter the below CSS code in the textarea and click on Update Widget.
    select.form-dropdown,.col2 input.translatable.form-textbox {
      background-color: lightblue;
    }

    Steps to add custom CSS to a widget Screenshot 20 Screenshot 20

    That's it. Here's what it should look like afterward:

    Configurable List widget: Highlight first two input fields Image 1 Screenshot 31

    Let us know if you need any more help.

  • Sonnyfer JotForm Support
    Replied on March 19, 2025 at 8:50 AM

    Hi again Erica,

    You can also check out this guide about injecting CSS Codes to widgets.

    Reach out again if you need any more help.

  • erikalim907
    Replied on March 21, 2025 at 6:38 AM

    Thanks, the code worked perfectly!

    But now I added a new column called "WH code" that I also want to display in light blue. In the same configurable list with heading "Artwork Details".

    Can you pls give me the CSS code?

    Form: https://www.jotform.com/build/250761474380054


  • Shaira JotForm Support
    Replied on March 21, 2025 at 9:33 AM

    Hi Erika,

    Here's the code you can insert to make the 'WH Code' field to appear in light blue.

    select.form-dropdown,.col3 input.translatable.form-textbox {
      background-color: lightblue;
    }


    Reach out again if you need any more help.

  • erikalim907
    Replied on March 26, 2025 at 4:58 AM

    Hi, I would like 3 columns in light blue: Status, Loc Code, WH Code. In 'Artwork Details' configurable list.

    With the above code, 'Loc Code' is not shaded:

    Configurable List widget: Highlight first two input fields Image 1 Screenshot 20

    Form: https://www.jotform.com/build/250761474380054

    Thank you.

  • Kyle JotForm Support
    Replied on March 26, 2025 at 8:40 AM

    Hi Erika,

    Here's the updated custom CSS code to highlight three columns—Status, Loc Code, and WH Code—in the Artwork Details configurable list widget:

    select.form-dropdown, 
    .col2 input.translatable.form-textbox, 
    .col3 input.translatable.form-textbox {
      background-color: lightblue;
    }

    Configurable List widget: Highlight first two input fields Image 1 Screenshot 20 Give it a try and reach out again if you have any other questions.