Announcement

Collapse
No announcement yet.

Radio Button Choices ignore Column Count

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Radio Button Choices ignore Column Count

    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:
    Code:
    .selectOptions ul li {float:left; clear:both; font-size:1rem;}
    And that clear:both; is forcing a new line for every item.

    Fix is to replace that line with:
    Code:
    .selectOptions ul li {float:left; font-size:1rem;}
    Seen in SD 2018, 2016, 2014.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    #2
    This has been bugging me Norman, and has cropped up pretty much on each new addition. Thank you for the solution.
    Jeff Nurse
    Managing Director

    Aerofoil Design
    Office Design & Furniture Solutions
    www.aerofoil.net

    Comment

    Working...
    X