hello
i would like alternate background color in my Table how can i do that please ?
take care
my needs it’s to have vertically alternate background color line ! in each table
i hope im clair, sorry i’m french
And sorry i want my first row with a different color of the 2 other :) …
like
first row : red
second pink
third white
fourth : pink
fifth : white
etc…
Hi mediafacto,
Try adding this CSS code in Quick CSS, located in Enfold > General Styling:
#top .pricing-table > li:nth-child(even) {
background-color: pink;
}
#top .pricing-table > li:nth-child(odd) {
background-color: white;
}
#top .pricing-table > li.avia-heading-row {
background-color: red;
}
Best regards,
Nikko