Hi,
I would like to apply same font-color and font-size to all cells in table. Is it doable with custom CSS?
Thanks
sure, something simple like this should work:
td {
color: #FF0000 !important;
font-size: 24px !important;
}
If you need something more specific, we’d need more details