Changing Text Color in Table View

Hello! I’m hoping someone can help me with what I believe should be CSS Editing. I have data in a Table View node with a column to “flag” data that falls outside of a set range. How would I go about making the text in just the “flag” column bolded and red for table view? Thanks!

Hi @ciarroccacm

This is indeed possible with the CSS editor.

Assuming the flag column is located to the far right, I used:

td:last-child {
     color: #FF2D00;
     font-weight: bold;
}

The correct td depends a bit on the actual lay-out of your data. Reference: CSS :nth-child() Selector

1 Like

@ArjenEX Thank you! I have been struggling with how to type correctly for the css editing so that link is super helpful!

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.