After the last update, I no longer have control over how I would like my text content block in my pop-up to be spaced. I want single spacing. It is forcing large double spaces in-between each line. When I try to add the html tag <p class="space"> (first image below) it deletes my added html requests completely (second image below).
To have properly laid out pop-ups, we need to be able to single space when we want to, and choose to double space if we need to. Please don't force it - it makes pop-ups looks messy and they get far too long with this type of implementation.
Solved! Go to Solution.
It doesn't appear to allow any modifications to the <p> element. Could you try doing it with <div>s instead? AGOL is much more permissive of inline style tags for div elements.
<div style="letter-spacing:2px;margin-bottom:10px;">
<u>Current Owner Contact Info</u>
</div>
<div style="rotate:180deg;text-align:right;">
Some Person
</div>
<div style="font-family:monospace;">
123 Main Street
</div>
It doesn't appear to allow any modifications to the <p> element. Could you try doing it with <div>s instead? AGOL is much more permissive of inline style tags for div elements.
<div style="letter-spacing:2px;margin-bottom:10px;">
<u>Current Owner Contact Info</u>
</div>
<div style="rotate:180deg;text-align:right;">
Some Person
</div>
<div style="font-family:monospace;">
123 Main Street
</div>
Div worked! Thanks Josh.