É possível mudar o Rótulo das Linhas?
-
Pe. DaviAsked on October 19, 2021 at 09:43 AM
É possível mudar o Rótulo das Linhas? Ao invés de 1, 2, 3, 4 ... Colocar outros rótulos?
This is a re-post of a comment on How to Set Up the Spreadsheet Widget?
-
IvayloAnswered on October 21, 2021 at 06:16 AMJotform Support
You can do it with some CSS code. You should inject the following piece of code per row:
th#row_1:after {
content: "Custom text"; /*Replace this with your text for this row*/
font-size: 16px;
}
th#row_1{
font-size: 0;
}
You would only need to change the number on the identifier, so for the second row use "th#row_2:after " and "th#row_2 ".
In order to inject the CSS code, you can follow this guide:
https://www.jotform.com/help/117-how-to-inject-custom-css-codes
Let us know if you need any further assistance.