I want to add some shading colour to every second row in the table. I do not want it to be a different colour to the main font colour.
Also I want the font to be the same as the default size (not larger)
Any Suggestions would be appreciated.
Hey Geoffdoyle!
Thank you for using our theme.
Can you give us the link to the page you want to change?
Best regards,
Günter
Hey!
To alter the styles of the second table put in custom.css or Endold->Styles->Quick-CSS field the following and adjust the values:
.avia-table-2 tr:nth-child(2),
.avia-table-2 tr:nth-child(4),
.avia-table-2 tr:nth-child(6)
{
background: #e1e1e1 !important;
}
.avia-table-2 tr{
font-size: 12px !important;
}
For the first table use .avia-table-1.
Cheers!
Günter