I need to edit a combo box widget I have created

  • menstrom
    Asked on May 16, 2016 at 2:00 PM

    I would like the text boxes in my combo box widget to be wider, and to center the radio buttons under the heading above them rather than left-justify.  I have attached a screen shot.

    Jotform Thread 840221 Screenshot
  • victor
    Replied on May 16, 2016 at 3:22 PM

    To expand the text boxes in the widget you can use the following CSS code

    .col1 [type="text"],

    .col2 [type="text"],

    .col3 [type="text"] {

     width: 150px !important;

    }

     

    You may also use the following code to move the checkboxes to the right so it will look it is centered

    .col4 input[type="checkbox"] {

    margin-left: 80px !important;

    }

     

    I need to edit a combo box widget I have created Image 1 Screenshot 20

    Please let us know if this helps.

  • menstrom
    Replied on May 16, 2016 at 3:34 PM

    That was exactly what I needed.  Thanks for your quick and helpful answers!

  • victor
    Replied on May 16, 2016 at 4:43 PM

    You are very welcome. If you require additional assistance, please let us know.