Hello,
I have a small issue. I would like the prices on some of the pages to the right justify, meaning that the last digits should be aligned to the right.
On my old website it looks like this : https://prnt.sc/hwxki0
and I would like it to look like that : https://prnt.sc/hwxhip
How can I accomplish this with Quick CSS? I have 4 different pages where I would like to have this.
Thank you so much for your help
Yes I was able to. Thank you anyway! Here is the code if anyone read this in the future :
/* Price Text align */
.tablepress .column-3 {
width: 15%;
text-align: right;
}
.page-id-23 .tablepress .column-2 {
width: 15%;
text-align: right;
}
.page-id-27 .tablepress .column-2 {
width: 15%;
text-align: right;
}
.page-id-31 .tablepress .column-2 {
width: 15%;
text-align: right;
}
/* Price Text align */