How do I adjust the width of responses and "Other" option so that is not cutoff?

  • Ahurley24
    Asked on April 27, 2015 at 8:27 AM

    How do I adjust the width of responses and Other option so that is not cutoff? Image 1 Screenshot 20

  • Elton Support Team Lead
    Replied on April 27, 2015 at 11:29 AM

    Hi,

    Injecting the following CSS codes to your form should extend all the other text boxes on checkbox and radio.

    .form-textbox.form-radio-other-input,
    .form-textbox.form-checkbox-other-input {
    width: 180px;
    max-width: 180px;
    }

    .form-radio-item:last-child,
    .form-checkbox-item:last-child {
    width: 230px !important;
    max-width: 230px;
    }

    Here's how: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes-to-your-Form

    Result:

    How do I adjust the width of responses and Other option so that is not cutoff? Image 1 Screenshot 20

    Let us know if you need further help. Thanks!