Hi,
thanks for your post, and sorry for the trouble.
The problem here are the long URLs in the third column. As those are treated as one very long word by the browser (because the usually don’t contain spaces or hyphens where the browser could do word-wrapping), the browser has to make the third column wider, so that the URL fits. This means that other columns have to be made more narrow, even if you have set a column widths via CSS. (This can be nicely seen in the “Pat Cunningham” row.)
Your best chance here would therefore be to maybe turn those URLs in the third column into actual clickable links which have a short link text. For this, you could either type/copy in HTML code like
<a href="https://example.com/">Link</a>
manually or use the “Insert Link” button which will create this HTML for you.
Regards,
Tobias
Thank you Tobias. That worked. Your support is exceptional!
Brian
Hi,
no problem, you are very welcome! 🙂 Good to hear that this helped!
Best wishes,
Tobias
P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!
Oh Tobias, I was also trying to change the colour of the Description showing at the bottom of the table, but I can’t get it to work:
.tablepress-table-description {
color: #ffffff;
}
Thanks,
Brian
Hi Brian,
please try adding the !important flag to raise the command’s priority, like
color: #ffffff !important;
Regards,
Tobias
Brilliant once again, Tobias.
Thank you.