Tagged: background, tables
Hi,
I have a basic table created and the default setup displays alternating colour. Can you tell me how to remove the colour so the table rows are just transparent.
Thanks
Hey!
Try adding this code to the Quick CSS:
table tr {
background: white !important;
}
Cheers!
Josue
That works!
How about the text colour? How to make text colour not displaying alternating colour?
Hi!
You can use the below css:
table tr {
color: #5C5C5C !important;
}
Regards,
Dake