Set font size for note?

Is there any way to set the font size for a note using JSON?

I’m currently using this construct as part of the form’s JSON

note: {text: “Enter name”,width:280}

Try something like:

note: { text: "<span style='font-size: 18px !important;'>aloha</span>", width: 150 }

Thank you Darya - that works perfectly :slight_smile:

You are welcome!