- Issue created by @ikam
- πΊπΈUnited States flashwebcenter Austin TX
Hello,
Thank you for providing detailed information about your setup. Based on your description, it appears that the issue lies in the CSS selector used within the CSS Injector.
#page-wrapper { table tr:deactivated td { background-color: red; } }
The selector tr:deactivated is not a valid CSS pseudo-class, which is why the background color isn't being applied.
To apply a red background to table rows with the class deactivated, you should adjust your CSS as follows:
#page-wrapper table tr.deactivated { background-color: red; }
Best wishes,
Alaa Hi Alaa - Thank you so much for your help - I fixed my CSS per your suggestion and now my table rows are displaying the correct background! Much appreciated!