Increase the "height" of configurable lists

  • lmabson
    Asked on June 3, 2017 at 7:27 PM

    I know you can increase the width but is it possible the increase the height?

  • Elton Support Team Lead
    Replied on June 3, 2017 at 10:54 PM

    That's possible since you can inject custom CSS codes in the config list widget.

    Just to clarify, do you want to increase the height of the config list fields like text box, text area, and select box?

    If that's what you want, you can use the following CSS codes.

    #list input, #list select {

        height: 24px;

    }

    #list textarea{

        height: 80px;

    }

    Feel free to change the height value in this code.

    To inject this code, open the config list widget settings then go to Custom CSS tab. Paste the above code afterward.

    Increase the height of configurable lists Image 1 Screenshot 20

    If you need anything else, let us know.