Maybe you can try the table-layout property.
https://www.w3schools.com/cssref/pr_tab_table-layout.asp
I went to the tables.scss file and saw that there is already class setup to use this property. Try adding the class "table-fixed"
Here is the styling for it.
// Makes the columns fixed
table.table-fixed {
table-layout: fixed;
}
Hi Sytze,
The only option I've used in the past that resolves this issue is to generate the full HTML by yourself and output it using the "format string" widget (render as HTML)
This does mean that you lose the ability to edit any fields.
Best,
Mitchel