How to Customize the Multiple Choice Field Styles

Would you like to customize the Multiple Choice field color? By default, this field will use standard web styling to display the field in your form. In this article, we’re going to walk you through how easy it is to do this with the power of CSS!

multiple choice default styling

However, if you are using the WPForms Block Editor, you can easily adjust these styles without the need of custom CSS. To read more about that, please take a look at this useful guide. When you change the Field Styles and the Button Styles, you can achieve the exact same in the block editor that you can with the custom CSS in this article.

using the block editor custom styling you can change these colors without the need of adding custom CSS

Using the block editor Button Styles not only changes the Submit button and Multiple Choice field but will also change the Checkbox field colors as well.

In this article, we’re going to be working through using the magic of custom CSS to make these changes.

Creating the form

To begin you’ll create your form and add the fields you need which will include at least one Multiple Choice field.

If you need any assistance with creating your form, you can easily review this useful guide.

Once you’ve added the Multiple Choice field, click the Advanced tab and inside the CSS Classes add special-radio-buttons. We’ll use this as a trigger to call in our custom CSS.

add the unique CSS class to the CSS Classes field and save the form.

Customizing the style of the Multiple Choice field

Once you’ve saved the form, you can now add your CSS. If you’re not sure where or how to add custom CSS to your site, please review this tutorial for assistance.

.special-radio-buttons input[type=radio] {
    -webkit-appearance: none !important;
    appearance: none !important;
    background-color: #ffffff !important;
    margin: 0 !important;
    color: #e27730 !important;
    width: 1.15em !important;
    height: 1.15em !important;
    border: 0.15em solid #e27730 !important;
    border-radius: 50% !important;
    transform: translateY(-0.075em) !important;
    display: grid !important;
    place-content: center !important;
}

.special-radio-buttons input[type=radio]:checked:before {
    transform: scale(1) !important;
}

.special-radio-buttons input[type=radio]:before {
    content: "" !important;
    border-radius: 50% !important;
    transform: scale(0) !important;
    transition: 120ms transform ease-in-out !important;
    box-shadow: inset 1em 1em #e27730 !important;
    border: 1px solid #e27730 !important;
}

.special-radio-buttons input[type=radio]:checked:after {
    background-color: #e27730 !important;
}

This CSS will change the color of the border and selection to #e27730 but will also add a tiny animation as selections are made.

using this CSS you can easily customize the Multiple Choice fields to change their color

Whether you use the block editor styling or the custom CSS you can easily customize the Multiple Choice field colors. Did you know that you can also turn the Multiple Choice field options to look like buttons? Take a look at our tutorial on How to Customize Checkbox and Radio Fields to Look Like Buttons.