<?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 Experience Builder Widget icon size in ArcGIS Experience Builder Questions</title>
    <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354551#M9594</link>
    <description>&lt;P&gt;Did you select your custom theme in the build mode?&lt;/P&gt;</description>
    <pubDate>Wed, 29 Nov 2023 13:10:19 GMT</pubDate>
    <dc:creator>JeffreyThompson2</dc:creator>
    <dc:date>2023-11-29T13:10:19Z</dc:date>
    <item>
      <title>ArcGIS Experience Builder Widget icon size</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1353288#M9548</link>
      <description>&lt;P&gt;I have a custom widget that is added to a widget controller. I am able to add an icon to the widget using this section in the widget settings:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MajeedPooyandeh_0-1700941632091.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/87071iCEB6195D6E54E493/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MajeedPooyandeh_0-1700941632091.png" alt="MajeedPooyandeh_0-1700941632091.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;the problem is that the size of the image inside the icon, follows jimu-icon height and width and can't be changed:&lt;BR /&gt;&amp;lt;img src="mypng url" width="16" height="16" class="jimu-icon" alt=""&amp;gt;&lt;BR /&gt;&lt;BR /&gt;I have tried everything including changing the css in widget.tsx, but the css only applies to the element only after the widget is clicked. when the widget is opened, the size changes and the img inside icon has a larger size. I also tried to programatically change the style and attribute of the element inside the&amp;nbsp;componentDidMount method of the widget, however still no luck. I played with the jimu-icon settings a bit, I changed the size of the config.json in ..\ArcGISExperienceBuilder\server\public\apps\3\resources\config like this:&lt;BR /&gt;&lt;BR /&gt;"icon": {&lt;BR /&gt;"svg": "${appResourceUrl}/images/icon_picker_in_setting/1700936360929.png",&lt;BR /&gt;"properties": {&lt;BR /&gt;"filename": "1700936360929.png",&lt;BR /&gt;"originalName": "pngegg.png",&lt;BR /&gt;"path": "${appResourceUrl}/images/icon_picker_in_setting/1700936360929.png",&lt;BR /&gt;"isUploaded": true,&lt;BR /&gt;"inlineSvg": false,&lt;BR /&gt;"size":22&lt;BR /&gt;}&lt;BR /&gt;but seems like the size attribute doesn't change.&lt;BR /&gt;&lt;BR /&gt;I have done the same with the default icon.svg in the widget folder itself, but still no luck. Any help will be much appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Nov 2023 19:56:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1353288#M9548</guid>
      <dc:creator>MajeedP</dc:creator>
      <dc:date>2023-11-25T19:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder Widget icon size</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1353547#M9555</link>
      <description>&lt;P&gt;The best way to alter the button sizes is to alter the css. This can either be in the style.scss of your theme or in a custom widget that is always open (i.e. not in a widget controller or on a different page or view). You will want to use a compound selector to prevent other icons from also being altered. This one should work.&lt;/P&gt;&lt;LI-CODE lang="css"&gt;.avatar-button .jimu-icon {
    height: 50px;
    width: 50px;
}&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 27 Nov 2023 16:08:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1353547#M9555</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2023-11-27T16:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder Widget icon size</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354220#M9578</link>
      <description>&lt;P&gt;Thanks Jeffrey,&lt;BR /&gt;&lt;BR /&gt;I can't have a widget which is always open.&amp;nbsp; where is the style.css of my theme? I don't see a style.css anywhere.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 18:10:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354220#M9578</guid>
      <dc:creator>MajeedP</dc:creator>
      <dc:date>2023-11-28T18:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder Widget icon size</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354240#M9579</link>
      <description>&lt;P&gt;You will need to create it. &lt;A href="https://developers.arcgis.com/experience-builder/guide/theme-development/" target="_self"&gt;Here is the theme development guide.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 18:48:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354240#M9579</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2023-11-28T18:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder Widget icon size</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354424#M9586</link>
      <description>&lt;P&gt;Thanks&amp;nbsp; a lot for your help Jeffrey,&lt;BR /&gt;&lt;BR /&gt;I created a style.scss file in the themes folder, as instructed in the link you sent, and added your code to it. npm started client and server. Nothing changed, still using the default width and height of 16:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MajeedP_0-1701212622075.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/87389iB7393F39EE50625B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MajeedP_0-1701212622075.png" alt="MajeedP_0-1701212622075.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 23:04:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354424#M9586</guid>
      <dc:creator>MajeedP</dc:creator>
      <dc:date>2023-11-28T23:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder Widget icon size</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354551#M9594</link>
      <description>&lt;P&gt;Did you select your custom theme in the build mode?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 13:10:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354551#M9594</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2023-11-29T13:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder Widget icon size</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354734#M9602</link>
      <description>&lt;P&gt;Not sure what you mean by build mode. If you are referring to this page, I can select one of these and even if I click customize it allows me to change font and colors.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MajeedP_0-1701279807539.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/87472iC5AE9E3202DE56FE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MajeedP_0-1701279807539.png" alt="MajeedP_0-1701279807539.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here what I see in the customize screen:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MajeedP_1-1701279844436.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/87473i3F85061D0DD0F161/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MajeedP_1-1701279844436.png" alt="MajeedP_1-1701279844436.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 17:44:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354734#M9602</guid>
      <dc:creator>MajeedP</dc:creator>
      <dc:date>2023-11-29T17:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder Widget icon size</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354742#M9604</link>
      <description>&lt;P&gt;Please note that I don't want to create a new theme, I just want to override this single css rule.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 17:51:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354742#M9604</guid>
      <dc:creator>MajeedP</dc:creator>
      <dc:date>2023-11-29T17:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder Widget icon size</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354757#M9605</link>
      <description>&lt;P&gt;This is what worked for me. I added all the files of a new theme. I left all empty except for the style.scss in which I added the style. Then selected my theme in the build mode and the change to the style was applied:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MajeedP_0-1701281670262.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/87476i228DE393F5D30C8D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MajeedP_0-1701281670262.png" alt="MajeedP_0-1701281670262.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 18:14:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354757#M9605</guid>
      <dc:creator>MajeedP</dc:creator>
      <dc:date>2023-11-29T18:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder Widget icon size</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354768#M9606</link>
      <description>&lt;P&gt;Great. Those are exactly the missing steps. I did not fully explain.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 18:31:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1354768#M9606</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2023-11-29T18:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder Widget icon size</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1370885#M10361</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/580259"&gt;@MajeedP&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Can you please elaborate on what is build mode and the procedure to select the theme in build mode?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2024 10:02:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1370885#M10361</guid>
      <dc:creator>LakshanaRajendran</dc:creator>
      <dc:date>2024-01-17T10:02:52Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder Widget icon size</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1370927#M10363</link>
      <description>&lt;P&gt;The build mode is this screen where you can actually construct your Experience. To select a theme, click the palette icon and select the theme of your choice in the sidebar. If you have made a custom theme, it should be in this list.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JeffreyThompson2_0-1705497568711.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/91799iB2BF7FD850060D62/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JeffreyThompson2_0-1705497568711.png" alt="JeffreyThompson2_0-1705497568711.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2024 13:19:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-widget-icon-size/m-p/1370927#M10363</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2024-01-17T13:19:44Z</dc:date>
    </item>
  </channel>
</rss>

