Good morning. I am in the need of help. I have a custom character sheet based on a Dresden Files sheet. I customized the sheet long ago to fit the group needs and it worked perfectly until yesterday, when I made a change and saved it (in fact, past friday 12th march it was working ok). The problem is that the tabs that change the view between pages of the character sheet have stopped working, and I am lost on how to make them work again. If save it without Legacy Sanitization the view is a huge mess and the tabs do not work. If I save it with Legacy Sanitization, the CSS is ok but the "click" on the tabs do not show the proper sheet. Thank you in advance ^^ Here is the code as written: Related HTML LAYOUT <!-- buttons that toggle the diferent pages of the character sheet --> <div class="tabstoggle"> <input type="hidden" class="sheet-tabstoggle" name="attr_sheetTab" title="@{sheetTab}" value="charsheet"> <input type="hidden" class="sheet-typetoggle" name="attr_sheet_type" title="@{sheet_type}" value="character"> <button type="action" id="charbutton" class="char-button toggleable" name="act_charsheet" >Personaje</button> <button type="action" id="spellbutton" class="spell-button toggleable" name="act_spellsheet" >Magia</button> </div> <input type="hidden" class="tabstoggle" name="attr_sheetTab" value="config" /> <h1>Destino de Mago</h1> <!-- pages to toggle and that are not beign shown --> <div class="sheet-page sheet-charsheet"> ... </div> <div class="sheet-page sheet-spellsheet"> ... </div> Related CSS Styling /*Hide toggleable pages and sections*/ .sheet-toggleable { display: none; } /* show the selected tab */ .sheet-tabstoggle[value="charsheet"] ~ #sheet-charsheet, .sheet-tabstoggle[value="spellsheet"] ~ #sheet-spellsheet { display: block; } Related SCRIPT <script type="text/worker"> const charButtonList = ["worksheet","charsheet","spellsheet","city-high","city-locs","city-face","config"]; charButtonList.forEach(button => { on(`clicked:${button}`, function() { setAttrs({ sheetTab: button }); }); }); </script> Related TRANSLATION { "legacy": true }