Hi @2020media
There’s no built-in way to organise your radios like this, but if you only have a few radios you can use this CSS to make them appear inline.
First, add a class inline-control
to your cf7 radio field. E.g.
[md-radio label="Choose"]
[radio radio-test class:inline-control label_first use_label_element default:1 "One" "Two" "Three"]
[/md-radio]
Then add this CSS under Appearance > Customize > Material Design Forms > Custom CSS.
#cf7md-form .inline-control .wpcf7-list-item {
width: auto;
margin-right: 30px;
}
This will put your radio options inline with a 30px gap between each. You can also apply this class to checkbox fields.
A not-too-distant-future version of the plugin will have this as a feature, and also the option to group checkboxes and radios into equal-width columns.
Thanks,
Angus
-
This reply was modified 6 years, 11 months ago by
GusRuss89.