.................. WORDFLY FEATURE .................. I want to add the code that adds support for Boxed Style in survey blocks. .................. SOLUTION .................. STEP 1. Open the CSS Editor at the bottom of your page. STEP 2. In your Global Stylesheet, add the following CSS code. If you have existing styles, add it to the bottom. .note { font-size: 12px; margin: -10px 0 20px; text-align: left; } .survey-block .answer-count-6 li { width: 16.6666666667%; } .survey-block .answer-count-7 li { width: 14.2857142857%; } .survey-block .answer-count-8 li { width: 12.5%; } .survey-block .answer-count-9 li { width: 11.1111111111%; } .survey-block .answer-count-10 li { width: 10%; } .survey-block .answer-count-11 li { width: 9.0909090909%; } .survey-block.boxed-options ol { border: 1px solid; display: table; } .survey-block.boxed-options li { display: table-cell; vertical-align: middle; } .survey-block.boxed-options li:not(:last-child) { border-right: 1px solid; } .survey-block.boxed-options li input { height: 0; margin: 0; opacity: 0; padding: 0; position: absolute; width: 0; } .survey-block.boxed-options li label { cursor: pointer; display: inline-block; padding: 5px 0; width: 100%; } .survey-block.boxed-options li input:checked ~ label { background-color: #666666; color: #ffffff; } STEP 3. Close CSS drawer, then click Save. The Boxed Style checkbox will now be available in the Survey block panel.