Hello Helical Team,
Hello team. I am using helical insight enterprise edition 4.1 GA. I would like to make the table header of a specific color. Can it be done?
Thank You,
Sesa.
Hello Helical Team,
Hello team. I am using helical insight enterprise edition 4.1 GA. I would like to make the table header of a specific color. Can it be done?
Thank You,
Sesa.
Hello Sesa,
By using the below code in the CSS editor the header can be made of any specific color. So in the below code we have specified that the 1st column and 3rd column header should be of a specific color.
th:nth-child(3) {
background: green;
}
th:nth-child(1) {
background: orange;
}
Thank You,
Helical Insight.