The following CSS code can be used, in a Custom HTML element to style the radio button selections to become inline. |
Figure 1: Radio Buttons Inline
<style> div[id^='satisfaction'] label { width: unset; padding: 10px; display: inline; } </style> |
Replace "satisfaction" in the code above with your radio's field ID.