Is it possible to adjust the spacing between checkbox option?

  • grs.ami.19
    Asked on August 21, 2019 at 8:35 PM

    Hello, is it possible to adjust the spacing between each option in a checkbox list?

  • Vanessa_T
    Replied on August 21, 2019 at 9:15 PM

    Are you referring to Multiple Choice element or checkboxes within the Configurable List widget?

    For Multiple Choice element, you can add a Custom CSS directly to the form like below:

    .form-checkbox-item {

      padding-bottom: 15px;

    }

    How-to-Inject-Custom-CSS-Codes

    Meanwhile for Configurable List, since it is a widget, you can add the Custom CSS into the widget's settings.

    .checkbox {

      padding-bottom: 15px;

    }

    How-to-Inject-CSS-Codes-to-Widgets

    Adjust 15 to a bigger number if you want to have bigger space.