Tagged: table
I would hide the differences between rows; even and odd’s in table. How can I do that?
Thanks in advance!
Hi pnacho!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even) {
color: inherit;
}
.main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra {
background: white;
}
Cheers!
Yigit
Thanks! It work!