Hi,
thanks for your post, and sorry for the trouble.
The reason for this is that in the third column, you are using HTML <p> tags for that image label, whereas the other two columns use HTML links (the <a> tag). However, your theme gives <p> tags a bottom margin, so that the cell content seems to be “higher up” in the cell.
You could either remove the <p> tags or add “Custom CSS” like
.tablepress-id-4 p {
margin-bottom: 0 !important;
}
As for the second row: Technically, that’s working fine, it’s just that that row has a different cell padding, due to the other CSS that you added for this table.
Regards,
Tobias
Hi TobiasBg,
Thank you very much for your very prompt help – and for your wonderful plugin!
Now I understand the problem I solved it by adding a link to the contents of my last column so that it starts <a hhref= I’ve also added the Custom CSS as you suggested.
What a relief!
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!
Hello
I have a similar problem
in una column I insert images
but in all others cells the text is aligned on the top of the cell
I need that will be aligned in the middle
How can I do?
Hi,
please add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:
.tablepress tbody td {
vertical-align: middle;
}
Regards,
Tobias