CSS Injection: Do you guys have another way to approach the field ID 's?

  • ronaldjan
    Asked on January 31, 2018 at 2:25 PM

    Hm. Yes. I already found out how to identify the field ID's.... The problem is however, this doesn't work for the star rating field :-(. Do you guys have another way to approach the field ID 's? CSS coding is worthless without proper field ID's.....

  • David JotForm Support Manager
    Replied on January 31, 2018 at 3:22 PM

    What is the code that you are trying to inject to the star rating fields? Is this the form in question? http://www.jotformeu.com/form/80304955602352 

  • ronaldjan
    Replied on January 31, 2018 at 5:43 PM
    Hello David. Thank you for your quick reply. I am trying to 'display:none' the question labels. By doing so the overall form will look a bit more subtle, questions will only be exposed by their sub labels. For now I disabled this coding but once I know the exact field ID again I can bring it back on....
    Bye. Ronald Jan
    <="" a="">
    <="" a="">
    Sent from my iPhone.
    ...
  • David JotForm Support Manager
    Replied on January 31, 2018 at 7:39 PM

    You can do an inspect element with your browser to get the ID of the label you want to hide, example:

    1517445511inspectid Screenshot 10

    So, this would be the code you need to inject to hide that label: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    #label_240{

        display: none;

    }