custom css for dropdown field in configurable list

  • ncha_tech
    Asked on March 5, 2018 at 11:41 AM

    I would like to change the width of the dropdown fields in a configurable list widget.  I need the class name.

  • Marvih
    Replied on March 5, 2018 at 1:12 PM

    You can adjust the width of your configurable list using the code below.

    td.col3 select{

    width:200px;

    }

    td.col3 is the column number in which the Dropdown option is and select is the element used for creating the dropdown.

    custom css for dropdown field in configurable list Image 10