Cannot change the width of multiple choice fields

  • stormingrobots
    Asked on August 22, 2019 at 10:40 AM

    regarding form: 91583842008156

    1566484785junk Screenshot 10

    Fail to lengthen the selection so that it won't take up less lines.

    Advice is appreciated.

  • BJoanna
    Replied on August 22, 2019 at 12:29 PM

    Do you want to display each option is a single line? If so, please add the following CSS code to your form:

    .form-radio-item, .form-checkbox-item {

        max-width: 550px;

    }

    .form-single-column .form-checkbox-item, .form-single-column .form-radio-item {

        width: 550px;

    }

    .form-checkbox-item:not(#foo) label {

        margin-left: 27px;

        text-indent: 0px;

    }

    How to Inject Custom CSS Codes

    1566491104checkbox Screenshot 10

  • stormingrobots
    Replied on August 22, 2019 at 5:12 PM

    thank you.