Hej Magnus,
It seems to me, that this is a CSS problem. In your test case the Lista över arter
is in the HTML before the rest of the content, so it is covered by the padding of the tiddler body:
.tc-tiddler-body {
padding-right: 17em;
}
You can put it after the tiddler body or elevate it to a higher z-index like this:
.info-table {
...
position: absolute;
z-index: 100;
}
Hope that helps,
Thomas