Hey guys, how would I go about possibly making a repeating section which adds new containers in a simple grid pattern? I.E. it starts in the bottom left, then adds 2 to the right, then skips to the next line and adds 3 on the bottom? Think it's doable? Here is the code: <div class="label">Powers</div> <div class="left"> <fieldset class="repeating_powers"> <div class="power"> <div class="row"> <input type="text" name="attr_powername" placeholder="Power"/> <input type="number" name="attr_powercost" placeholder="0"/> <span class="powerbuttons"> <button type="roll" name="roll_power" value="&{template:default} {{name= @{name} }} {{FEATURE= @{powername} }} {{DESC.=@{power} }}"/></button> <input type="checkbox" name="attr_poweruse" value="0"/><span></span> </span> <br> <input type="checkbox" name="attr_powerstandard" id="powerstandard" value="0" /> <label for="powerstandard">S</label> <input type="checkbox" name="attr_powerpassive" id="powerpassive" value="0" /> <label for="powerpassive">P</label> <input type="checkbox" name="attr_powerquick" id="powerquick" value="0" /> <label for="powerquick">Q</label> <input type="checkbox" name="attr_powerfree" id="powerfree" value="0" /> <label for="powerfree">F</label> <input type="checkbox" name="attr_powermovement" id="powermovement" value="0" /> <label for="powermovement">M</label> <input type="checkbox" name="attr_powerreaction" id="powerreaction" value="0" /> <label for="powerreaction">R</label> <input type="checkbox" name="attr_poweroverdrive" id="poweroverdrive" value="0" /> <label for="poweroverdrive">O</label> </div> </div> <br> <br> <div class="feature"> <textarea name="attr_power" class="sheet-open" placeholder="Description"/></textarea> </div> <br> </fieldset> </div> It displays a compact block full of info, some styled checkboxes, and a roll button. The goal is for each container (about 300px tall) to span 30% of the page, then have 2 more lines of 3 Powers.. i.e. ---Label stretching over 100% of the page--- Original Power ---- Power ---- Power Power-----Power-----Power Power-----Power-----Power. I'm doing this in a repeating section rather than making all 9 boxes because it's obnoxious to label 9 discrete empty power buttons, hehe. Anything helps - repeating sections are pretty nebulous to me! (By the way the checkboxes are not as obnoxious as the same. I made it so the box is just a letter that lights up when clicked.)