Hello Tobias,
Thanks for the great plugin!
I was having the same issue but I found a solution.
The Custom CSS margin property wasn’t working to center the tables, although the width property worked:
.tablepress-id-N {
width: auto;
margin: 0 auto 1em!important;
}
Then I saw that this code was overriding the above Custom CSS margin property.
dataTables_wrapper .tablepress {
clear: both;
margin: 0!important;
}
So, this addition to your Custom CSS made it work great:
.dataTables_wrapper .tablepress-id-N {
width: auto;
margin: 0 auto 1em!important;
}
Thanks again!
Cheers, Jaime