Tagged: table formatting
Hello! I’m using the TABLE content element as tabulated data with a default table design. I have 4 columns and 4 rows. I have text in each of the cells. The font color in rows 2 and 4 are slightly lighter in color than the font color in rows 1 and 3.
How do I set the font color so it’s the same (no slight color variation) for all rows/cells?
Thanks!
Jeff
Hey JeffBianchi,
Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)
Best regards,
Vinay
Hello Vinay!
The website is http://www.fbtherapy.com.
The table is in the Services Provided section.
Thanks!
Jeff
Hi Jeff,
Please try the following in Quick CSS under Enfold->General Styling:
tr:nth-child(even) {
color:#383838 !important;
}
Best regards,
Rikard
Excellent! Worked great. Much appreciated.