Tagged: table
Any way to change the TABLE colour scheme?
Currently it runs in an alternating pattern.
Reference:
http://gyazo.com/c7eb83d8a827e41da19b2647d7e37106
I’d like to set it up to have one header colour and then the option to change the colours of the rest of the table background to either the same colour, or other options. For example I’d like my table header to be the dark blue colour in the image, and then the rest of the table be the lighter blue colour, etc.
Is this possible?
Thanks
Any help on this???
Hey!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as desired
.pricing-table li.avia-heading-row, .pricing-table li.avia-heading-row .pricing-extra { background-color: red!important; }
.pricing-table li.avia-pricing-row { background-color: blue!important; }
post the link to your page where you have table if that does not work
Regards,
Yigit
This worked, however is there any way to differentiate between the first “header row” and the rest of the table. Basically from that web link posted, I want the header to be that colour and then the remainder of the table to be a the 2nd colour.
Thanks!
Hi!
Please try adding following code to Quick CSS as well
.main_color tr:nth-child(1) {
background: white;
}
Regards,
Yigit
Perfect!!! This solved everything!
Thank you very much!