
Sorry to ask such a basic question, and I hope this is the correct forum to ask it in, but I don't seem to be grasping how to force the <details> arrow to display again in my custom character sheet. I read in the wiki and the forums that since it was been set to "block" the arrows do not appear. I see in the wiki it says to " set it to display:inline-item; or display:revert; to make it show again" but I have tried multiple guesses on how "exactly" to do that, and I also tried "display:list-item;" as well. I have not figured out the correct way to do it. What is the proper way to add this to my css? Thanks for your help, really appreciate it. If you want more information, f or example, I think I've tried all these combinations in the CSS section... .charsheet details {display:inline-item;} [also tried list-item and revert} (nope) details {display:inline-item;} [also tried list-item and revert} (nope) I've tried identifying my <details> by class... .skill_description {display:inline-item;} [also tried list-item and revert} (nope) .charsheet .skill_description {display:inline-item;} [also tried list-item and revert} (nope) .charsheet .skill_description details {display:inline-item;} [also tried list-item and revert} (nope) and I've tried adding an inline style to the <details> element itself in the HTML, no joy. <details class="skill_description" style="display: [tried inline-item, list-item, revert];"> (nope)