Hi,
thanks for your post, and sorry for the trouble.
I’m not sure that I understand. What exactly do you want to align how?
Regards,
Tobias
Sorry, I should have been more clear.
Right below where we have 3 images of people where it states “What A Few Of Our Users Have To Say”. The first two blockquotes look good but the third column looks off. All the images are 200×200 in size.
Hi,
everything looks fine for me there… Here’s a screenshot (Google Chrome) of what I’m seeing: https://imgur.com/a/GD71kJs
One thing that you could maybe do is make the columns equal width. For that, please add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:
.tablepress-id-3 td {
width: 33.3%;
}
Regards,
Tobias
That did it…Thanks for the quick response time.
Hi,
no problem, you are very welcome! 🙂 Good to hear that this helped!
Best wishes,
Tobias
Ok, the above worked however, it is not centered on mobile.
Used the following
[table id=3 responsive=”stack” /]
The text is aligned to the left?
Hi,
ah, I see. To fix that, please use this modified code:
@media screen and (min-width: 768px) {
.tablepress-id-3 td {
width: 33.3%;
}
}
Regards,
Tobias
Yessir… worked again. Great support!
Hi,
always happy to help! 🙂
Best wishes,
Tobias