We are using both data tables and pricing tables here:
http://pointeroyalegolf.net/course/rates/
On the data table only, we would like to keep the “heading row” like it is now, then the alternating “default rows” would be white background with gold text to match the first default row. Would there be a quick css input I could do to accomplish this? Thank you.
Hey hobart!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra {
background: white;
color: #c29445;
}
Regards,
Yigit
Thanks Yigit! This gets me really close. Is there a way now to keep just the HEADING ROW a different color background? This made all rows white.
Hi!
Please add following code to Quick CSS as well
tr.avia-heading-row {
background-color: #f2f2f2!important;
}
Regards,
Yigit
Perfect! Thank you.