Viewing 1 replies (of 1 total)
  • Moderator cubecolour

    (@numeeja)

    You can do this with css using nth-child for modern browsers.

    for example, to make the third row of each table badass-green, add the following to your child theme or custom css panel:

    table tr:nth-child(3) {
    	background: #bada55;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Can you change text color for an entire row?’ is closed to new replies.