Skip to main content

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

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.


this works great… thanks so much J!!