I'm currently modifying the Dark Heresy API Edition sheet for Only war, and would like to add a repeating section for linking traits and feats in the chat log, instead of having to cram everything into the one field or looking it up in the books. I'm using this jsfiddle, and trying to implement a 'hide' section, only on the sheet the items I've marked to be hidden don't disappear when the checkbox is checked. The exact section I'm working on is: <!-- Traits Section --> <img src="<a href="http://i.imgur.com/TKfHnQ9.png"><!--" rel="nofollow">http://i.imgur.com/TKfHnQ9.png"><!--</a> Divider --> <h3 data-i18n="traits-u">Traits</h3> <div class="sheet-item" style="width:90%"> <input name="attr_Ability" type="text"> </div> <div class="sheet-item" style="width:10%"> <input name="attr_TraitsPage" type="text" data-i18n-placeholder="page-number-#-u" placeholder="pg#" style="text-align: center;"> </div> <fieldset class="repeating_Abilities"> <div class="sheet-item" style="width:90%"> <input name="attr_Abilities" type="text" > </div> <div class="sheet-item" style="width:10%"> <input type="checkbox" class="sheet-toggle-hide"></div> <div class="sheet-item" style="width:90%"><input name="attr_Description type="text" class="sheet-collapse"></div> <!-- Page Section <div class="sheet-item" style="width:10%"> <input name="attr_TraitsPages" type="text" data-i18n-placeholder="page-number-#-u" placeholder="pg#" style="text-align: center;"> </div> --> </fieldset> </div> </div> Here's a link to the CSS and HTML I'm working with. I think there's a conflict somewhere in the CSS but am lacking the know how to pinpoint it, any help would be much appreciated!