Hi everyone! I am creating a sheet for a system of mine, and I have ran into a problem. I am still pretty green with html and css (specially css is a pain for me) - and I feel like solving this problem all by myself might be a pain without someone poiting me into teh right direction. I am building my sheet by heavily modifying the 5E OGL sheet (by Roll20) and removing references to D&D. The Problem: I love the tab feauture of the OGL Sheet, but my tabs broke a while ago. I can see the core tab without problem, but the "Bio" and "Action" tabs are not visible at all. This is how it looks when open on the roll20 game: To the best of my knowledge, t he pieces of code directly associated to the tabs are written as follows: <div class="container pc">
<input class="tab-button core" type="radio" name="attr_tab" value="core" checked="checked"><span dummy8311="core-u">CORE</span>
<input class="tab-button bio" type="radio" name="attr_tab" value="bio"><span dummy8311="bio-u">BIO</span>
<input class="tab-button actions" type="radio" name="attr_tab" value="actions"><span dummy8311="abilities-u">ACTIONS</span>
<!--
<input class="tab-button options" type="radio" name="attr_tab" value="options"><span style="font-family: pictos">y</span>
-->
<div class="page core">
[...]
</div>
[...]
<div class="page bio">
<div class="header">
<div class="name-container">
[...]
</div>
<div class="header-info">
[...]
</div>
</div>
<div class="textbox pibf" style="margin-top: 25px;">
[...]
</div>
<div class="textbox pibf" style="margin-top: 25px;">
[...]
</div>
<div class="body">
<div class="col col1">
[...]
</div>
<div class="col2-3">
[...]
</div>
</div>
</div>
</div>
I have checked if new characters had the same problem, and they do. I have tried to find some </div> that might be missing, maybe mistankingly erased in my 30+ versions of the sheet. I have looked for disabled code that might affect this problem. All to no avail, and I have just gotten to a point where I honestly dont even know where I should keep looking. Any help is appreciated! (I did not provide the code as a whole as I am not sure about the copyright area I am at right now.)