Is it possible to shrink the font size of the radio buttons on the phone?

  • mreinan
    Asked on October 24, 2017 at 6:27 PM
    Is it possible to shrink the font size of the radio buttons on the phone? Or shift to column on the phone?
    https://form.jotform.com/72964644165162
  • David JotForm Support
    Replied on October 24, 2017 at 6:44 PM

    You should be able to adjust the font size of those labels on mobile by adding the following CSS:

    @media only screen and (max-width: 550px){

        .form-radio-item label {
        font-size : 16px !important;
        }
    }