Hi,
thanks for the link! This is caused by some bad behavior by the accordion plugin. Instead of using a wrapping container, it’s directly setting CSS attributes on the content of the accordion.
To work around this, please add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:
.accordion .accordion-navigation > .content.active .tablepress {
display: table;
}
.accordion .accordion-navigation > .content.active .tablepress thead {
display: table-header-group;
}
.accordion .accordion-navigation > .content.active .tablepress tbody {
display: table-row-group;
}
.accordion .accordion-navigation > .content.active .tablepress tr {
display: table-row;
}
.accordion .accordion-navigation > .content.active .tablepress th,
.accordion .accordion-navigation > .content.active .tablepress td {
display: table-cell;
}
Regards,
Tobias