Select to view content in your preferred language

Map Viewer Configure form Info Box - Code

114
1
4 weeks ago
ablum
by
Emerging Contributor

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.

ablum_1-1739972474820.png

 

 

0 Kudos
1 Reply
AustinAverill
Regular Contributor

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

0 Kudos