I have the following inline CSS: .nx-skootable-data tbody tr td:nth-child(19) { background-color: #ADADAD; } .nx-skootable-data th:nth-child(19) { background-color: #ADADAD; } It works, except that the odd rows are being shaded based on my theme template. Is there a way to override the odd row shading shading on just the 19th column?
Page 1 / 1
It seems, that the theme is still overriding your style.
I could get it working by adding !important.
.nx-skootable-data tbody tr td:nth-child(19), .nx-skootable-data tr th:nth-child(19) { <br> background-color: #adadad !important; <br>}
note: If you want it on the 19th row you’d need to change the selector to this:
.nx-skootable-data tbody tr:nth-child(19) td { <br> background-color: #adadad !important; <br>}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.