Altair Posted October 3, 2019 Report Share Posted October 3, 2019 I have a Tabular Report DataPage. I want to modify a column's alignment. I can't seem to find it in Styles section, it always affects the whole table. Quote Link to comment Share on other sites More sharing options...
Nuke354 Posted October 3, 2019 Report Share Posted October 3, 2019 You could try using CSS to acheive this. Just add a Header and Footer element to your DataPage. Then use this code, th:nth-child(4)[class*="cbResultSetLabel"]{ text-align: left!important; } td:nth-child(4)[class*="cbResultSetData"]{ text-align: left!important; } The child number is dependent on what column you want, you may to play with the child number value to achieve your desired outcome. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.