How can I change the textbox size in a Configurable List widget

  • crickettts
    Asked on March 12, 2018 at 9:51 PM

    I need the textbox to be longer

  • onurc JotForm Developer
    Replied on March 13, 2018 at 2:12 AM

    Hi,

    You can easily change the field size manually as well, just open the Designer and Paste this CSS code, you can change the 40% value with your preferred value : 

    #input_5_area{

        width:50%;

    }

    You can also see the Field's ID by following this guide : http://www.jotform.com/help/146-How-to-find-Field-IDs-Names 

    Hope this will help you.

    If you have any question or comment, please let us know.

    Kind regards!

  • crickettts
    Replied on March 13, 2018 at 10:26 AM

    Hi,

    I forgot to mention that the text box is from the widget "Configurable List" - the recommended code is not working.

  • Mike_G JotForm Support
    Replied on March 13, 2018 at 12:19 PM

    Thank you for the clarification. If that is the case, then you can try injecting the CSS codes below to the Custom CSS tab of the Configurable List widget.

    How-to-Inject-CSS-Codes-to-Widgets

    input[type="text"] {

        width: 150px !important;

    }

    You can change the value of the "width" property to your preference.

    I hope this helps. If you have other questions or concerns, please do not hesitate to ask us anytime.

  • crickettts
    Replied on March 13, 2018 at 4:17 PM

    Okay great! That worked. 

    I also would like to changed the color of the label of the textbox on the Configurable List Widget.

  • Support_Management Jotform Support
    Replied on March 13, 2018 at 5:28 PM

    I can see you already these CSS codes to your widget and figured this one out:

    label {

        color: white;

    }

    The textbox label of your Configurable List Widget is white. In case we're mistaken, just let us know so we can help.