Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
English
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

Code Block
languagexml
<style>
    div[id^='satisfaction'] label {
        width: unset;
        padding: 10px;
	    display: inline;
    }
</style>

Replace "satisfaction" in the code above with your radio's field ID.