<?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: Change Icon of Home Button in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840786#M9279</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert. Actually , the problem is only with the Launchpad theme. I'm able to see the changes reflected in other themes. The problem is I have developed the custom widgets within the same application&amp;nbsp;and users approved everything else and this is the small change they seek for. I'm trying to see to add custom home button with my desired icon.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Dec 2017 17:51:10 GMT</pubDate>
    <dc:creator>SumathyAlwar_Arunachalam</dc:creator>
    <dc:date>2017-12-04T17:51:10Z</dc:date>
    <item>
      <title>Change Icon of Home Button</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840780#M9273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , I'm trying to change the icon of Home Button WAB 2.3 . The 'Change Widget Icon' option is disabled for the Home Button and all the default widgets. How do I change the 'Home Button ' Icon in WAB.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any input is much appreciated.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Dec 2017 20:34:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840780#M9273</guid>
      <dc:creator>SumathyAlwar_Arunachalam</dc:creator>
      <dc:date>2017-12-01T20:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Change Icon of Home Button</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840781#M9274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sumathy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Unfortunately this has to be done through a css rule as the JS API is what is in control over the home button not WAB. Add this css rule to the HomeButton\css\style.css file and add a new images folder under the css folder that contains your desired image (i.e.&amp;nbsp;&lt;SPAN&gt;HomeButton\css\images\zoomExtent.png):&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="selector token"&gt;.HomeButton .home&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="property token"&gt;background-image&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="url token"&gt;url(./images/zoomExtent.png)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="property token"&gt;background-position&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; center center&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="property token"&gt;background-repeat&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; no-repeat&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:16:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840781#M9274</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T10:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Change Icon of Home Button</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840782#M9275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Robert,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the Quick response and much appreciated. I tried as you&amp;nbsp; have suggested .&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;i have created images folder in &lt;SPAN&gt;HomeButton\css&amp;nbsp;&lt;/SPAN&gt;and placed the png&amp;nbsp;.Following is the entry I have added in&amp;nbsp;&lt;SPAN&gt;HomeButton\css\style.css&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.HomeButton .home {&lt;BR /&gt; background-image: url(./images/globe.png);&lt;BR /&gt; background-position: center center;&lt;BR /&gt; background-repeat: no-repeat;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cleared the browser , and&amp;nbsp; tried again. But no luck. Still shows the same home icon.&lt;/P&gt;&lt;P&gt;Any more suggestions ?.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Dec 2017 16:37:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840782#M9275</guid>
      <dc:creator>SumathyAlwar_Arunachalam</dc:creator>
      <dc:date>2017-12-04T16:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Change Icon of Home Button</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840783#M9276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Sumathy,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&amp;nbsp; I have this working on my end so you must be missing something simple. Are you make these changes in the stemApp widgets folder or your actual apps widgets folder?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Dec 2017 16:47:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840783#M9276</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-12-04T16:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Change Icon of Home Button</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840784#M9277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have made the changes in the actual apps widgets folder&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Dec 2017 16:55:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840784#M9277</guid>
      <dc:creator>SumathyAlwar_Arunachalam</dc:creator>
      <dc:date>2017-12-04T16:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: Change Icon of Home Button</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840785#M9278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Sumathy,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Well I thought it might be that I tested in WAB 2.6 and 2.3 is different, but I just tested in 2.3 and it worked fine for me there too. I am not sure what to tell you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/385579_Untitled-1.jpg" style="width: 620px; height: 560px;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Dec 2017 17:07:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840785#M9278</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-12-04T17:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: Change Icon of Home Button</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840786#M9279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert. Actually , the problem is only with the Launchpad theme. I'm able to see the changes reflected in other themes. The problem is I have developed the custom widgets within the same application&amp;nbsp;and users approved everything else and this is the small change they seek for. I'm trying to see to add custom home button with my desired icon.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Dec 2017 17:51:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840786#M9279</guid>
      <dc:creator>SumathyAlwar_Arunachalam</dc:creator>
      <dc:date>2017-12-04T17:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: Change Icon of Home Button</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840787#M9280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Sumathy,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&amp;nbsp; &amp;nbsp;That makes a lot of difference then. The Launchpad theme handles things very different than other themes.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;In the apps themes\LaunchpadTheme\styles\default\css (assuming you are using the default style) folder open the&amp;nbsp; launchpad.css file make these changes:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="selector token"&gt;.claro .HomeButton .home&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="property token"&gt;background-image&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="url token"&gt;url(./images/zoomExtent.png)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="property token"&gt;background-position&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; center center&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="property token"&gt;background-repeat&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; no-repeat&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;/*.claro .HomeButton .home {
&amp;nbsp; background-image: none;
}
.claro .HomeButton .home:before {
&amp;nbsp; font-family: "launchpad-icons" !important;
&amp;nbsp; content: attr(data-icon);
&amp;nbsp; font-size: 16px;
&amp;nbsp; font-style: normal !important;
&amp;nbsp; font-weight: normal !important;
&amp;nbsp; font-variant: normal !important;
&amp;nbsp; text-transform: none !important;
&amp;nbsp; speak: none;
&amp;nbsp; line-height: 1;
&amp;nbsp; -webkit-font-smoothing: antialiased;
&amp;nbsp; -moz-osx-font-smoothing: grayscale;
&amp;nbsp; content: "h";
}*/&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;And now you need to add the png file to the images "themes\LaunchpadTheme\styles\default\css\images" folder.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:16:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840787#M9280</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T10:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: Change Icon of Home Button</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840788#M9281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Robert. That perfectly worked !!. Much appreciated your timely help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Dec 2017 18:53:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/change-icon-of-home-button/m-p/840788#M9281</guid>
      <dc:creator>SumathyAlwar_Arunachalam</dc:creator>
      <dc:date>2017-12-04T18:53:37Z</dc:date>
    </item>
  </channel>
</rss>

