I'm fairly new to this thing, trying to work my way through, and this is my current stumbling block. The character sheet automatically adjusts based on the size of the page, but for my basic sheet (so far), that makes the columns all fall apart. Currently, all I'm using is the 3 and 2 column classes, labels with inputs, and a little css styling. As an example: <h1>Fire Emblem Character Sheet</h1> <div class="sheet-2colrow"> <div class="sheet-col"> <label>Name:</label><input type="text" name="attr_character_name" /> <label>Level:</label><input type="number" name="attr_lvl" /> </div> <div class="sheet-col"> <label>Race:</label><input type="text" name="attr_race" /> <label>Gender:</label><input type="text" name="attr_gender" /> </div> </div>