<?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 Change color of text in PopupMobile in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-of-text-in-popupmobile/m-p/30360#M2515</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am facing the problem that with some mobile Browsers like DolphinHD&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;that the browser makes the text color white, and the background is also white.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So i want to change the textcolor - or the background color but there's no such thing defined in the documentation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/help/jsapi_start.htm#jsapi/popupmobile.htm" rel="nofollow" target="_blank"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/help/jsapi_start.htm#jsapi/popupmobile.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone know how to do this?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Jan 2013 06:37:23 GMT</pubDate>
    <dc:creator>DavidRaijmakers</dc:creator>
    <dc:date>2013-01-02T06:37:23Z</dc:date>
    <item>
      <title>Change color of text in PopupMobile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-of-text-in-popupmobile/m-p/30360#M2515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am facing the problem that with some mobile Browsers like DolphinHD&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;that the browser makes the text color white, and the background is also white.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So i want to change the textcolor - or the background color but there's no such thing defined in the documentation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/help/jsapi_start.htm#jsapi/popupmobile.htm" rel="nofollow" target="_blank"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/help/jsapi_start.htm#jsapi/popupmobile.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone know how to do this?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2013 06:37:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-of-text-in-popupmobile/m-p/30360#M2515</guid>
      <dc:creator>DavidRaijmakers</dc:creator>
      <dc:date>2013-01-02T06:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: Change color of text in PopupMobile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-of-text-in-popupmobile/m-p/30361#M2516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi David, one way to modify a style (text color in this case) in the mobile popup window is to change the property listed below (include it in your css file):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
.esriPopupMobile .titlePane {
color: black !important;
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I added the important rule to override the default property (white).&amp;nbsp; I found the property by running this sample &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/samples/widget_mobilepopup/index.html" rel="nofollow noopener noreferrer" target="_blank"&gt;mobile sample&lt;/A&gt;&lt;SPAN&gt; in Chrome on the desktop and then inspecting the styles under the 'Elements' tab.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's also worth noting, you will want to check the browser/device type the user is running your app on.&amp;nbsp; For iOS, you would not want to change the text color or background color.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:13:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-of-text-in-popupmobile/m-p/30361#M2516</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-10T21:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: Change color of text in PopupMobile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-of-text-in-popupmobile/m-p/30362#M2517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the heads up about the element inspector on chrome.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I fixed it with it:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It should be:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;.esriMobileInfoView {&amp;nbsp; color: black !important; }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jan 2013 05:42:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-of-text-in-popupmobile/m-p/30362#M2517</guid>
      <dc:creator>DavidRaijmakers</dc:creator>
      <dc:date>2013-01-03T05:42:24Z</dc:date>
    </item>
  </channel>
</rss>

