Hi,
unfortunately, it’s not possible to use colspan
and the JavaScript functions at the same time. This is a limitation of the external library (that was not written by me) and there is no way to change that at the moment, sorry ?? You will have to decide what’s more important for you.
To have a different text alignment, you can use CSS code. For example, add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:
.tablepress-id-2 .row-9 td {
text-align: center;
}
.tablepress-id-2 .row-15 td {
text-align: right;
}
You might also want to prevent automatic line breaks in some columns (even though your table will then be too wide, due to the small content area of your theme):
.tablepress-id-2 tbody td {
white-space: nowrap;
}
Regards,
Tobias