Hello –
I have standard <table><tbody><tr><td></td></tr>… tables in some of my pages.
I’ve noticed that they get automatically rendered with alternating shades of grey (one row is dark, the next is lighter, the next after that dark again). I would like to have the same font color throughout instead, but don’t know how to “disable” the effect.
Please advise.
Thanks,
billlon
Hi billlon!
Thank you for using Enfold.
Please use this on Quick CSS or custom.css:
.main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra {
background: white;
color: #808080;
}
Cheers!
Ismael
Thanks, it works