If your Webflow custom form has an issue where the radio buttons are not being selected when clicked, there are a few key areas to investigate.
1. Check Form Structure
- Ensure the radio buttons are inside the form block. Double-check that they are placed correctly without any overlapping elements.
- Verify that each radio button has the proper name attribute, which groups them together logically, allowing only one to be selected within the group.
2. Review Field Settings
- Inspect each radio button's settings within the Element Settings panel. Ensure that all radio buttons intended to work together share the same name, and each has a unique value attribute.
- Confirm that there are no conflicting scripts or custom codes affecting the radio buttons' functionality.
3. Inspect for Style Issues
- Check for custom CSS styles that might be affecting visibility or usability. Invisible or excessively styled radio inputs might appear as non-functional.
- In Designer, disable any custom CSS related to form inputs and test again.
4. Test for JavaScript Conflicts
- Review any custom JavaScript to ensure that it's not blocking events on the radio buttons. JavaScript errors can be found with your browser’s Developer Tools console.
- Temporarily disable any JavaScript to see if the issue resolves, then re-enable scripts one by one to identify the culprit.
Summary
To resolve the issue of radio buttons not being selectable in Webflow, verify the form's structural integrity and ensure proper naming conventions for radio groups. Inspect and adjust CSS and JavaScript to avoid conflicts. Confirm that no element overlaps the inputs, hindering user interaction.