Dears
Anyone knows how can I formatting the tables?
When I create a table one row has a white background with black writing and one row as a light grey background with dark writing. I wish to modify it in order to have for all the rows the same background and writing format.
Hey lordgara3,
Can you give us a screenshot or mockup of what you want to achieve? to help us accurately visualize what you want to do.
And also can you give us a link to your page? so we can try to inspect what you already have and try to give you css codes that should help.
Best regards,
Nikko
here the website: http://drsc.ch/wettbewerbe/
https://www.mediafire.com/view/zqxn18mkr1o4ud0/Annotation_2020-05-12_124102.jpg/file
Hi lordgara3,
Please try adding this CSS code in Quick CSS, located in Enfold > General Styling:
#top .tablepress .row-2 td {
background-color: #f8f8f8;
color: #666;
}
Best regards,
Nikko
Thank you Nikko. That code changed only the 2nd row. I want to change all the even rows of all tables of the website.
Hi,
I see, please replace the code I gave with this one:
#top .tablepress .even td,
#top .avia-table tr:nth-child(even) {
background-color: #f8f8f8;
color: #666;
}
Best regards,
Nikko