Skip to main content
Nintex Community Menu Bar
Question

CSS: Table Column Color

  • July 9, 2024
  • 2 replies
  • 52 views

Forum|alt.badge.img+8

I have alternating color table rows, but I’d like the first column to be gray.  Is this possible?

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+6
  • Nintex Employee
  • July 9, 2024

Scott,

This is possible by overriding our CSS. Try adding the following as an inline CSS resource on a page where you want this behavior:

table.nx-skootable-data tbody tr td:nth-child(3) { background-color: #f8f8f8; }

I’m assuming that the “first” column is actually the column after your row actions, but if this isn’t the case, just change the “3” to whatever you need it to be.


Forum|alt.badge.img+8
  • Author
  • July 9, 2024

this works great… thanks so much J!!