Hi,
thanks for your question, and sorry for the trouble.
The cause for this is the CSS code
.column-1,.column-2,.column-3{
padding-top: 18px !important;
padding-bottom: 18px !important;
}
in the /wp-content/themes/foundry-child/style.css file of your site.
This sets a higher top and bottom padding for the first three columns, but the fourth column is kept at its default of 8px.
My recommendation would be to replace this with
.tablepress th,
.tablepress td {
padding-top: 18px;
padding-bottom: 18px;
}
so that all cells in all tables are changed to those 18px top and bottom padding.
Regards,
Tobias
Thank you Tobias,
I changed the CSS code in the Theme Editing and it appears something is over-riding it, as it continued to do the same thing.
I took the suggested coding for top and bottom padding and added to the top of Plugin Options in TablePress and it appears that all tables are displaying properly.
Not sure it that was the proper way to get the fix – but it appears to be working.
RAFlo
Hi,
both ways are possible 🙂 The change in style.css is sufficient here, you were just not seeing the results due to browser caching. If you force-reload (Ctrl+Shift+R on the keyboard) to clear that cache, everything should also work.
But indeed, putting the TablePress-related CSS code into the “Plugin Options” is indeed the recommended way.
Good to hear that everything is working now!
Best wishes,
Tobias
P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!