Adjust Width of Configurable List Widget

  • genesq
    Asked on March 28, 2017 at 10:03 AM

    Hi,

     

    Can you guys help me adjust the width of the Configurable List widget? I just need some easy way to either make it smaller or lengthen it. Thanks

     

  • Kevin Support Team Lead
    Replied on March 28, 2017 at 12:49 PM

    To either increase or decrease the widget's width you would need to change the fields width, this way you will control the widget's size. 

    Since you're using text box only on your widget, the following code should help you to change fields size and widget's width as well: 

    input[type=text] {

        width: 126px;

    }

    To inject the code you need to click on the widget's icon and go to the CSS tab: 

    Adjust Width of Configurable List Widget Image 1 Screenshot 20

    It may also require to change the widgets iFrame width, you will be able to do it with this code: 

    iframe[src*="configurableList"]{

    height: 900px;

    }

    But this code needs to be injected to the form, not in the widget, and this guide will help you to do it: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    Hope this helps.