How can I widen the options of a single choice selection?

  • shadowcliff
    Asked on March 7, 2018 at 1:49 PM

    Hello,

    I'd like to widen the width of a column of single choice options. It seems really cramped to me. How can I do this?

    Thanks!

    I'm working with this form: https://form.jotform.com/62077840605961.

  • Victoria_K
    Replied on March 7, 2018 at 3:16 PM

    Hello shadowcliff,

    in order to adjust the width of the radio-items, I suggest you to inject some custom CSS code. 

    Here it is:

    #cid_17 {

      max-width: 450px !important;

      width: 100%;

    }

    .form-radio-item {

      width: 100% !important;

      max-width: 450px !important;

    }

    How-to-Inject-Custom-CSS-Codes

    This will result the following layout:

    1520453766screenshot Screenshot 10

    Let us know if we can help you more.