Form Scripts on all sections of a form

AgileApps version 10.13.25.3

We have the need to format field labels and other labels. We can accomplish this using the onload area of form scripts with a piece of code similar to this:

setTimeout(()=>{
$(“label:contains(‘Record ID’)”).css({“color”: “purple”, “font-weight”: “bold”, “font-size”: “32px”, “font-family”: “Arial”}); },1);

However, this only applies to the first section of the form. How can we accomplish this on other sections on a form?

Thank you

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.