Hi,
how can set another text align for just one column?
For example:
I have 3 columns but only column 2 and column 3 should have the text align right.
Thank you for helping
Hey Stefan,
Could you post a link to where we can see the element in question please?
Best regards,
Rikard
Link is in private content. The prices in column 2 and three should. be right-aligned.
Hi,
Try this css:
.avia-table td:nth-child(n+2),
.avia-table .avia-heading-row th:nth-child(n+2) {
text-align: right;
}
Best regards,
Mike
works great, thank you!