Hello, is there any simple way to align these values to the right? I tried everything the Glide AI chat suggested, but nothing worked — from changing the column type to TEXT to see if the alignment option appeared, and so on.
Can only be done with CSS. Do you have a paid plan?
Yes. I have Explorer.
.custom-table tr td:nth-child(4), .custom-table tr td:nth-child(4) span{
margin-left: auto;
}
.custom-table tr td:nth-child(4) span[aria-hidden="true"] {
display: none;
}
With the table component having a class name of “custom-table”, and assuming the Ventas column is the 4th column in your table.
1 Like


