YASB! Radio buttons always show in 1 column due to an error in the Responsive CSS layout.
To fix, go to Design / Library / Layouts / Theme Stylesheets / Responsive CSS
Around line 769 is:
And that clear:both; is forcing a new line for every item.
Fix is to replace that line with:
Seen in SD 2018, 2016, 2014.
To fix, go to Design / Library / Layouts / Theme Stylesheets / Responsive CSS
Around line 769 is:
Code:
.selectOptions ul li {float:left; clear:both; font-size:1rem;}
Fix is to replace that line with:
Code:
.selectOptions ul li {float:left; font-size:1rem;}
Comment