Hi, I'm trying to figure out how to use the code function in the Info box when configuring a form. I've pasted the text I need but would like to add different font colors and new lines. I've clicked the code button and typed the HTML needed but it just shows the HTML text instead of updating the actual text. Any help would be appreciated.
You just have some syntax errors like mismatched quotes occurring here. If you are going to edit everything in HTML, it should also all be attributed appropriately -
<!-- Example -->
<div>
<p>First Section</p>
</div>
<div>
<p style="color:red"> Red Section</p>
</div>
<div>
<p>Final Section</p>
</div>
This code would translate to appear as:
First Section
Red Section (This would be red except for this forum doesn't support the style attribute)
Final Section