I have done ok slicing and dicing one sheet into what I want, but now I am at the point of trying to take the button selection option from the sheet that allows choosing between the different character types (in this game mages, vampires, werewolves), and I am a bit stuck. I am sure I am missing some nuance in the code syntax here. It likely has to do with class names and the functionality bits in CSS. If anyone is feeling generous I would love a bit of more detailed help. If so, read on! So, here is my concept: 1) The sheet will have the same basic structure in all cases: four tabs, Settings, Mortal, Supernatural, and Notes 2) Settings, Mortal, and Notes are the same for all characters 3) The entire Supernatural tab varies, thus if I am a mage it is full of mage stuff, if I'm a vampire it is full of vampire stuff, etc. 4) The sole purpose of the settings tab is to choose what I am (mage, vamp, werewolf) Where I am now and where I am trying to go: I successfully built out a sheet for mage (by borrowing from the great work of others) and it is about where I want it to be. This means all 4 tabs are filled out including the supernatural tab. Now, I want to add the toggling function to the settings tab so when I select mage I see the mage stuff I made on the supernatural tab, and when I select something else I don't. Code details: As far as I can ascertain, the reference sheet for the toggling functionality uses class designations to decide what to show based on one's setting. For example, here... <td> <span class="vampire">Clan:</span> <span class="werewolf>Auspice:</span> <td> ...this refers to one line, and shows "Clan" if vampire is selected and "Auspice" if werewolf is selected. My hope was to place similar class designation in the <div> for the entire supernatural tab content, thus allowing me to make different ones for the different character types and show the right one based what is selected. The problem I am having now is getting my selection buttons working. I have them, meaning I can see them and press them and select them, but my attempt to borrow the code that turns the selection into the correct toggle isn't working. At this point, to get deeper I would have to somehow show someone more knowledgeable than me the code. Note sure how to best do that... Anyway, if anyone wants to help and somehow look at my code, that would be amazing. If not I will keep banging away and I am sure eventually find a light switch in the dark.