Forum Discussion
CarlosMorenoV
May 12, 2023Copper Contributor
How to configure data column alignment in Project Online?
I don't know if its not possible or simply it is extremely hidden but I am not able to find how to center data in Project online columns (PWA not desktop client). Clicking on the column you can sele...
- May 12, 2023
Woody
Apr 26, 2024Brass Contributor
With CSS and with the table ID, I could center the 5th colum in Project Center using this:
#ctl00_ctl00_ctl32_g_a5afc583_fc7b_4928_b0d7_3448b4c5c719_ProjectCenterJSGridControl_leftpane_mainTable tr td:first-child + td + td + td + td
{
text-align: center !important;
font-size: 14px !important;
}