Hi, how do I set the color for even and odd rows
It is the background color and not the text color I need to change ;)
Alan ;)
That is the background color and not the text color I need to change ;)
Hi,
Please try the following in Quick CSS under Enfold->General Styling:
.main_color tr:nth-child(odd) {
background-color: red;
}
.main_color tr:nth-child(even) {
background-color: yellow;
}
Best regards,
Rikard
Great thank you.
Alan ;)