Hi,
thanks for the link.
As I had thought, the reason for the overlapping is not easily solvable by just adding width CSS.
The reason, why your table is so why is the content in it. The content you inserted simply requires this table width. Specifically, the “trouble maker” is the “URL” column. You can see this in the “Cal Auto Rental” row: The URL you inserted does not give the browser any choices to insert a line break (in the row below that, where the URL has a -
in it, the browser can however find a place to insert a line break). This forces the URL column to this long width. And with that, the entire table becomes very wide. Now, this width, which is required by the content of the cell can only be reduced by shortening the content of the cell. In the case of those URLs, I believe that you don’t actually need them. Just make the Company column clickable links, using the “Insert Link” button on the “Edit” screen. After that, your table will be much smaller, because you no longer have that URL column.
So, that would be solution I recommend.
As a temporary workaround, you could also try this:
Remove the current “Custom CSS” that you have and instead add this:
.wp-table-reloaded td,
.wp-table-reloaded th {
padding: 4px!important;
}
This code will shrink the inner white space of the table cells which also will make your table smaller and fix the overlapping.
Best wishes,
Tobias