<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ArcGIS Online Custom Popups in ArcGIS Online Developers Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-developers-questions/arcgis-online-custom-popups/m-p/416699#M493</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I experienced the same behaviour, from what I gathered anything that is &lt;STRONG&gt;not&lt;/STRONG&gt; listed on this site&amp;nbsp;&lt;A class="link-titled" href="https://doc.arcgis.com/en/arcgis-online/reference/supported-html.htm" title="https://doc.arcgis.com/en/arcgis-online/reference/supported-html.htm"&gt;Supported HTML—ArcGIS Online Help | ArcGIS&lt;/A&gt; will &lt;STRONG&gt;not&lt;/STRONG&gt; work. As stated:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;"HTML tags not listed in the table above are &lt;STRONG&gt;not&lt;/STRONG&gt; supported and will be filtered out."&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So even if it "works" when you refresh the page everything that is &lt;STRONG&gt;not&lt;/STRONG&gt; in that list will be rendered as plain text... To why &amp;lt;style&amp;gt; tags are filtered out, is beyond me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This means &amp;lt;style&amp;gt; tags, &amp;lt;script&amp;gt; tags, CSS class tags are all &lt;STRONG&gt;not&lt;/STRONG&gt; supported. The only way to get styles to work on your popup is inline CSS which means a lot of duplication of code to get the desired affect. If your going to go this route I would build the popup's first in an environment that fully supports CSS and then converts to inline CSS to be used in ArcGIS online, or you can use Arcade expressions as well to fill in the CSS style tags.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This site has a lot of good resources for tools helping you write inline CSS styles,&amp;nbsp;&lt;A class="link-titled" href="https://blog.edmdesigner.com/css-inliner-tools-in-email/" title="https://blog.edmdesigner.com/css-inliner-tools-in-email/"&gt;CSS Inliner Tools Worth Considering for Your Next Email&lt;SPAN style="color: #001000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #001000;"&gt; You can go pretty far with this route setting up webpack scripts to generate your popups. But if you looking for something quick, the site mentions there are online tools for creating inline CSS&lt;/SPAN&gt;&lt;/A&gt; like this one &lt;A class="link-titled" href="https://templates.mailchimp.com/resources/inline-css/" title="https://templates.mailchimp.com/resources/inline-css/"&gt;CSS Inliner Tool | Email Design Reference&lt;/A&gt; . &lt;A class="link-titled" href="https://blog.edmdesigner.com/css-inliner-tools-in-email/" title="https://blog.edmdesigner.com/css-inliner-tools-in-email/"&gt;&lt;SPAN style="color: #001000;"&gt;Basically it allows you to write your HTML with CSS &amp;lt;style&amp;gt;&lt;/SPAN&gt;&lt;/A&gt; tags then convert it to use CSS inline that can be used in a popup (remove the &amp;lt;style tags&amp;gt; though as no longer needed).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The main reason you would want to do this is it allows you to use CSS the way it was intended, to cascade the rules down to all the elements without having to type it all out manually as inline styles.&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;For Example:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; This: &lt;A class="link-titled" href="https://codepen.io/tforward/pen/vVqPjZ?editors=1000" title="https://codepen.io/tforward/pen/vVqPjZ?editors=1000"&gt;Table style tag CSS Demo&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Becomes:&amp;nbsp;&lt;A class="link-titled" href="https://codepen.io/tforward/pen/vVqPzJ" title="https://codepen.io/tforward/pen/vVqPzJ"&gt;Table Inline CSS Demo&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, at least at time of writing you can't use CSS pseudo elements like :hover, :after, :before etc as they don't work inline.&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;So something like this is currently not possible&amp;nbsp;&lt;A class="link-titled" href="https://codepen.io/tforward/pen/LgKvbz" title="https://codepen.io/tforward/pen/LgKvbz"&gt;Table Pseudo Elements CSS Demo&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, you have to go the ArcGIS Developer Addition custom app route or Javascript API even though you just want to get some CSS styling in there but this is a lot over overhead to just get some basic CSS styling in a pop-up.&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;You wanted a banana (CSS) but you got a gorilla holding the banana&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similar problem with &amp;lt;script&amp;gt; tags:&amp;nbsp;&lt;A class="link-titled" href="https://esri.jiveon.com/ideas/11723" title="https://esri.jiveon.com/ideas/11723"&gt;AGOL Configure custom popup in new window with ... | GeoNet&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other possibilities...&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://github.com/Esri/arcade-expressions/blob/master/popup/url-basic.md" title="https://github.com/Esri/arcade-expressions/blob/master/popup/url-basic.md"&gt;arcade-expressions/url-basic.md at master · Esri/arcade-expressions · GitHub&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://github.com/Esri/arcade-expressions/blob/master/popup/project-phase.md" title="https://github.com/Esri/arcade-expressions/blob/master/popup/project-phase.md"&gt;arcade-expressions/project-phase.md at master · Esri/arcade-expressions · GitHub&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/making-your-pop-up-pop/" title="https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/making-your-pop-up-pop/"&gt;Making Your Pop-up Pop!&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.esri.com/arcgis-blog/products/arcgis-online/uncategorized/crafting-custom-attribute-displays-in-pop-ups/" title="https://www.esri.com/arcgis-blog/products/arcgis-online/uncategorized/crafting-custom-attribute-displays-in-pop-ups/"&gt;Crafting custom attribute displays in pop-ups&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 Oct 2018 13:19:27 GMT</pubDate>
    <dc:creator>deleted-user-pZlUMHhkW23Q</dc:creator>
    <dc:date>2018-10-31T13:19:27Z</dc:date>
    <item>
      <title>ArcGIS Online Custom Popups</title>
      <link>https://community.esri.com/t5/arcgis-online-developers-questions/arcgis-online-custom-popups/m-p/416698#M492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to create a custom popup to show symbology according availability on selected areas. It works in my webmap until i save and refresh. Then when i select in map, the&amp;nbsp;code&amp;nbsp;its corrupted and shows symbology plus some parts of the code. I found that the error is in the "&amp;lt;td class={}&amp;gt; because arcgis online is not support "class" attribute for "td" tags. Anyone help me what i need to replace "class" attribute in my code to solve my issue?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Attach the code that im using:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;lt;style&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;.Si {&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; display:block;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;}&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;.No {&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; display: none;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;}&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;/style&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;b&amp;gt;&amp;lt;u&amp;gt;Pólizas Recomendadas&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;table border="0"&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;lt;td &lt;STRONG&gt;class={SeguroVida}&lt;/STRONG&gt;&lt;SPAN&gt;&amp;gt;&amp;lt;img alt="" border="0" height="32px" src="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fs3.amazonaws.com%2Frepositoriogmt%2Frecursos%2F" rel="nofollow" target="_blank"&gt;https://s3.amazonaws.com/repositoriogmt/recursos/&lt;/A&gt;&lt;SPAN&gt;{SeguroVida}Warning.png" width="32px" /&amp;gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;lt;/td&amp;gt;&amp;lt;td &lt;STRONG&gt;class={SeguroVida}&lt;/STRONG&gt;&amp;gt;&amp;lt;b&amp;gt;Seguro de Propiedad &amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;lt;/tr&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;lt;tr&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;lt;td &lt;STRONG&gt;class={Seguro_Sismos}&lt;/STRONG&gt;&lt;SPAN&gt;&amp;gt;&amp;lt;img alt="" border="0" height="32px" src="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fs3.amazonaws.com%2Frepositoriogmt%2Frecursos%2F" rel="nofollow" target="_blank"&gt;https://s3.amazonaws.com/repositoriogmt/recursos/&lt;/A&gt;&lt;SPAN&gt;{Seguro_Sismos}Earthquake.png" width="32px" /&amp;gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;lt;/td&amp;gt;&amp;lt;td &lt;STRONG&gt;class={Seguro_Sismos}&lt;/STRONG&gt;&amp;gt; &amp;lt;b&amp;gt;Seguro de Sismo&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt; &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;lt;/tr&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;lt;tr&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;lt;td &lt;STRONG&gt;class={SeguroDeslizamiento}&lt;/STRONG&gt;&lt;SPAN&gt;&amp;gt;&amp;lt;img alt="" border="0" height="32px" src="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fs3.amazonaws.com%2Frepositoriogmt%2Frecursos%2F" rel="nofollow" target="_blank"&gt;https://s3.amazonaws.com/repositoriogmt/recursos/&lt;/A&gt;&lt;SPAN&gt;{SeguroDeslizamiento}Deslizamiento.png" width="32px" /&amp;gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;lt;/td&amp;gt;&amp;lt;td &lt;STRONG&gt;class={SeguroDeslizamiento}&lt;/STRONG&gt;&amp;gt;&amp;lt;b&amp;gt;Seguro de Deslizamiento&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;lt;td &lt;STRONG&gt;class={Seguro_Inundabilidad}&lt;/STRONG&gt;&lt;SPAN&gt;&amp;gt;&amp;lt;img alt="" border="0" height="32px" src="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fs3.amazonaws.com%2Frepositoriogmt%2Frecursos%2F" rel="nofollow" target="_blank"&gt;https://s3.amazonaws.com/repositoriogmt/recursos/&lt;/A&gt;&lt;SPAN&gt;{Seguro_Inundabilidad}Flood.png" width="32px" /&amp;gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;lt;/td&amp;gt;&amp;lt;td &lt;STRONG&gt;class={Seguro_Inundabilidad}&lt;/STRONG&gt;&amp;gt;&amp;lt;b&amp;gt;Seguro de Inundabilidad&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 15:15:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-developers-questions/arcgis-online-custom-popups/m-p/416698#M492</guid>
      <dc:creator>PabloRios</dc:creator>
      <dc:date>2017-04-06T15:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Custom Popups</title>
      <link>https://community.esri.com/t5/arcgis-online-developers-questions/arcgis-online-custom-popups/m-p/416699#M493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I experienced the same behaviour, from what I gathered anything that is &lt;STRONG&gt;not&lt;/STRONG&gt; listed on this site&amp;nbsp;&lt;A class="link-titled" href="https://doc.arcgis.com/en/arcgis-online/reference/supported-html.htm" title="https://doc.arcgis.com/en/arcgis-online/reference/supported-html.htm"&gt;Supported HTML—ArcGIS Online Help | ArcGIS&lt;/A&gt; will &lt;STRONG&gt;not&lt;/STRONG&gt; work. As stated:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;"HTML tags not listed in the table above are &lt;STRONG&gt;not&lt;/STRONG&gt; supported and will be filtered out."&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So even if it "works" when you refresh the page everything that is &lt;STRONG&gt;not&lt;/STRONG&gt; in that list will be rendered as plain text... To why &amp;lt;style&amp;gt; tags are filtered out, is beyond me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This means &amp;lt;style&amp;gt; tags, &amp;lt;script&amp;gt; tags, CSS class tags are all &lt;STRONG&gt;not&lt;/STRONG&gt; supported. The only way to get styles to work on your popup is inline CSS which means a lot of duplication of code to get the desired affect. If your going to go this route I would build the popup's first in an environment that fully supports CSS and then converts to inline CSS to be used in ArcGIS online, or you can use Arcade expressions as well to fill in the CSS style tags.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This site has a lot of good resources for tools helping you write inline CSS styles,&amp;nbsp;&lt;A class="link-titled" href="https://blog.edmdesigner.com/css-inliner-tools-in-email/" title="https://blog.edmdesigner.com/css-inliner-tools-in-email/"&gt;CSS Inliner Tools Worth Considering for Your Next Email&lt;SPAN style="color: #001000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #001000;"&gt; You can go pretty far with this route setting up webpack scripts to generate your popups. But if you looking for something quick, the site mentions there are online tools for creating inline CSS&lt;/SPAN&gt;&lt;/A&gt; like this one &lt;A class="link-titled" href="https://templates.mailchimp.com/resources/inline-css/" title="https://templates.mailchimp.com/resources/inline-css/"&gt;CSS Inliner Tool | Email Design Reference&lt;/A&gt; . &lt;A class="link-titled" href="https://blog.edmdesigner.com/css-inliner-tools-in-email/" title="https://blog.edmdesigner.com/css-inliner-tools-in-email/"&gt;&lt;SPAN style="color: #001000;"&gt;Basically it allows you to write your HTML with CSS &amp;lt;style&amp;gt;&lt;/SPAN&gt;&lt;/A&gt; tags then convert it to use CSS inline that can be used in a popup (remove the &amp;lt;style tags&amp;gt; though as no longer needed).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The main reason you would want to do this is it allows you to use CSS the way it was intended, to cascade the rules down to all the elements without having to type it all out manually as inline styles.&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;For Example:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; This: &lt;A class="link-titled" href="https://codepen.io/tforward/pen/vVqPjZ?editors=1000" title="https://codepen.io/tforward/pen/vVqPjZ?editors=1000"&gt;Table style tag CSS Demo&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Becomes:&amp;nbsp;&lt;A class="link-titled" href="https://codepen.io/tforward/pen/vVqPzJ" title="https://codepen.io/tforward/pen/vVqPzJ"&gt;Table Inline CSS Demo&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, at least at time of writing you can't use CSS pseudo elements like :hover, :after, :before etc as they don't work inline.&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;So something like this is currently not possible&amp;nbsp;&lt;A class="link-titled" href="https://codepen.io/tforward/pen/LgKvbz" title="https://codepen.io/tforward/pen/LgKvbz"&gt;Table Pseudo Elements CSS Demo&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, you have to go the ArcGIS Developer Addition custom app route or Javascript API even though you just want to get some CSS styling in there but this is a lot over overhead to just get some basic CSS styling in a pop-up.&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;You wanted a banana (CSS) but you got a gorilla holding the banana&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similar problem with &amp;lt;script&amp;gt; tags:&amp;nbsp;&lt;A class="link-titled" href="https://esri.jiveon.com/ideas/11723" title="https://esri.jiveon.com/ideas/11723"&gt;AGOL Configure custom popup in new window with ... | GeoNet&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other possibilities...&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://github.com/Esri/arcade-expressions/blob/master/popup/url-basic.md" title="https://github.com/Esri/arcade-expressions/blob/master/popup/url-basic.md"&gt;arcade-expressions/url-basic.md at master · Esri/arcade-expressions · GitHub&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://github.com/Esri/arcade-expressions/blob/master/popup/project-phase.md" title="https://github.com/Esri/arcade-expressions/blob/master/popup/project-phase.md"&gt;arcade-expressions/project-phase.md at master · Esri/arcade-expressions · GitHub&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/making-your-pop-up-pop/" title="https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/making-your-pop-up-pop/"&gt;Making Your Pop-up Pop!&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.esri.com/arcgis-blog/products/arcgis-online/uncategorized/crafting-custom-attribute-displays-in-pop-ups/" title="https://www.esri.com/arcgis-blog/products/arcgis-online/uncategorized/crafting-custom-attribute-displays-in-pop-ups/"&gt;Crafting custom attribute displays in pop-ups&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2018 13:19:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-developers-questions/arcgis-online-custom-popups/m-p/416699#M493</guid>
      <dc:creator>deleted-user-pZlUMHhkW23Q</dc:creator>
      <dc:date>2018-10-31T13:19:27Z</dc:date>
    </item>
  </channel>
</rss>

