-
filmgeschaeftsfuehrung_harrerGefragt am 27. März 2024 um 09:43
-
Lara Jotform SupportGeantwortet am 27. März 2024 um 10:24
Hello Anna,
Thanks for reaching out to Jotform Support. To change the background color of specific cells from your input table field, we can inject a custom CSS code to it. Let me show you how:
- Open the form in Form Builder.
- Click on the paint icon located in the upper right of your screen.
- Then, go to Styles tab.
- Scroll down and, in the Inject Custom CSS section, copy and paste the code below.
/* Changes the bg color of the input values cell*/
[id^="input_3"][id$="4"],
[id^="input_3"][id$="5"],
[id^="input_3"][id$="6"],
[id^="input_3"][id$="_7"] {
background-color: lightgray;
height: 50px;
}
/* Changes the bg color of the column label*/
.form-matrix-column_4 {
background-color: lightgray !important;3
}
.form-matrix-column_5 {
background-color: lightgray !important;3
}
.form-matrix-column_6 {
background-color: lightgray !important;3
}
.form-matrix-column_7 {
background-color: lightgray !important;3
}
Give it a try and let us know if you need any other help.