I may have missed something on the wiki. I can't find any mention that selects don't work in CSE. One of my sheets contains the following: <select class="aim-type parchment" name="attr_aiming" /> <option value="-6" title="Spray Primary Target, -6">Spray</option> <option value="0" title="Wild, no bonus" selected="selected">Wild</option> <option value="1" title="Burst, +1">Burst</option> <option value="3" title="Aimed, +3">Aimed</option> <option value="4" title="Aimed Revolver, +4">Aimed R</option> <option value="5" title="Aimed with Sniper, +5">Aimed S</option> </select> I can drop that by itself (no css) in a game with the sheet set use a "legacy" custom sheet and it will create a working drop down list. If I disable legacy mode, I get this instead: Is there some trick to get this to work, or do I need to switch to a different format altogether? Solution found: Don't terminate the first line that way. The first line should be: <select class="aim-type parchment" name="attr_aiming" >