<?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 on-screen icon size in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578858#M15475</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure what you are missing. I don't think I can explain or outline it any further. Make sure you are changing the files for the app you are working in.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Apr 2017 21:27:38 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2017-04-14T21:27:38Z</dc:date>
    <item>
      <title>change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578851#M15468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sure the developers are probably tired of us mucking in their code, but I really want to make my on-screen icons bigger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found where to change the size of the image within the icon, but not the icon itself, it gets overwritten from the 'Inline style'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is in ~\jimu.js\css\jimu.css&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;/*css for PreloadWidgetIcon dijit*/
.jimu-widget-onscreen-icon{
&amp;nbsp; width: 105px; /*added*/
&amp;nbsp; height: 105px; /*added*/
&amp;nbsp; position: absolute;
&amp;nbsp; cursor: pointer;
&amp;nbsp; border-radius: 4px;
}
.jimu-widget-onscreen-icon img{
&amp;nbsp; width: 80px; /*changed*/
&amp;nbsp; height: 80px; /*changed*/
&amp;nbsp; margin: 10px;
}&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="DOM_Explorer.jpg" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/172155_DOM_Explorer.jpg" style="width: 620px; height: 556px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if there is some easy code to change, please let me know, thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:53:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578851#M15468</guid>
      <dc:creator>DaveOrlando</dc:creator>
      <dc:date>2021-12-12T00:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578852#M15469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dave,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; The hard coding of the 40px comes from the LayoutMnager.js in the jimu folder (see line 21-24):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;_createPreloadWidgetIcon: function(widgetConfig){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var iconDijit = new OnScreenWidgetIcon({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; panelManager: this.panelManager,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; widgetManager: this.widgetManager,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; widgetConfig: widgetConfig,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; configId: widgetConfig.id,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map: this.map
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(widgetConfig.position.relativeTo === 'map'){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; html.place(iconDijit.domNode, this.mapId);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }else{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; html.place(iconDijit.domNode, this.id);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //icon position doesn't use width/height in config
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; html.setStyle(iconDijit.domNode, utils.getPositionStyle({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; top: widgetConfig.position.top,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; left: widgetConfig.position.left,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; right: widgetConfig.position.right,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bottom: widgetConfig.position.bottom,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /*width: 40,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; height: 40*/
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; width: 105,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; height: 105
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iconDijit.startup();

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(!this.openAtStartWidget &amp;amp;&amp;amp; widgetConfig.openAtStart){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iconDijit.switchToOpen();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.openAtStartWidget = widgetConfig.name;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.preloadWidgetIcons.push(iconDijit);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return iconDijit;
&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:53:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578852#M15469</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T00:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578853#M15470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a million, I should have seen that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here are the four steps I took to enlarge the icon, enlarge the image within, move one over, and change the panels open position.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="change_onscreen_icon_size.jpg" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/172317_change_onscreen_icon_size.jpg" style="width: 620px; height: 402px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jan 2016 23:05:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578853#M15470</guid>
      <dc:creator>DaveOrlando</dc:creator>
      <dc:date>2016-01-22T23:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578854#M15471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does this still work? I'm having no luck adjusting the size of the placeholders&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Apr 2017 12:47:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578854#M15471</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2017-04-08T12:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578855#M15472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Eoin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;No files have changed since then. Here are the steps and files for WAB 2.4: (if just enlarging them x2)&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;This is for image inside of icon&lt;UL&gt;&lt;LI&gt;jimu.js/css/jimu.css&lt;/LI&gt;&lt;LI&gt;.jimu-widget-onscreen-icon img{&lt;BR /&gt;&amp;nbsp; width: 40px;&lt;BR /&gt;&amp;nbsp; height: 40px;&lt;BR /&gt;&amp;nbsp; margin: 20px;&lt;BR /&gt;}&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;This is for the icon itself&lt;UL&gt;&lt;LI&gt;jimu.js/LayoutManager.js&lt;/LI&gt;&lt;LI&gt;lines 695, 696, 728 and 729&lt;UL&gt;&lt;LI&gt;adjust width and height to 80.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;This is to move the second and third icons over&lt;UL&gt;&lt;LI&gt;Main config.json&lt;UL&gt;&lt;LI&gt;Change left to 145 and 235 to the second and third&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;This is to change widget panel opening location&lt;UL&gt;&lt;LI&gt;jimu.js/OnScreenWidgetPanel.js&lt;UL&gt;&lt;LI&gt;_getPositionInfo function lines 324 and 328&lt;UL&gt;&lt;LI&gt;Change 40 to 80&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Apr 2017 23:19:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578855#M15472</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-04-08T23:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578856#M15473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for you help Robert, I wasn't seeing any changes within WAB because I was editing files in the stemapp folder rather than the specific app folder, silly mistake I know!&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 14:28:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578856#M15473</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2017-04-10T14:28:11Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578857#M15474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having trouble making the onscreen-icon image bigger. I am on WAB 2.4.&lt;/P&gt;&lt;P&gt;I am editing the \server\apps\6\jimu.js\css at lines but my icons are not bigger, what i am doing wrong?&lt;/P&gt;&lt;P&gt;I made changes to the LayoutManger.js and that worked fine.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;css &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; PreloadWidgetIcon dijit&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;jimu&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;widget&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;onscreen&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;icon&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp; position&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; absolute&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp; cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; pointer&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp; border&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;radius&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; 4px&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;jimu&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;widget&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;onscreen&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;icon img&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp; width&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; 40px&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;changed &lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;20&lt;/SPAN&gt; to &lt;SPAN class="number token"&gt;40&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;
&amp;nbsp; height&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; 40px&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;changed &lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;20&lt;/SPAN&gt; to &lt;SPAN class="number token"&gt;40&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;
&amp;nbsp; margin&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; 10px&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;/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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:53:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578857#M15474</guid>
      <dc:creator>CCWeedcontrol</dc:creator>
      <dc:date>2021-12-12T00:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578858#M15475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure what you are missing. I don't think I can explain or outline it any further. Make sure you are changing the files for the app you are working in.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Apr 2017 21:27:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578858#M15475</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-04-14T21:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578859#M15476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am editing the \server\apps\6\jimu.js\css.&lt;/P&gt;&lt;P&gt;Would it have something to do with the fact that two icons are not original WAB icons?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2017 15:06:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578859#M15476</guid>
      <dc:creator>CCWeedcontrol</dc:creator>
      <dc:date>2017-04-17T15:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578860#M15477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You&amp;nbsp;have completed the other steps outlined in this thread beside the css portion right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2017 16:33:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578860#M15477</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-04-17T16:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578861#M15478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't not complete the other outlined steps. I didn't because i am not sure where excellently i need to edit the Main Config.json file of the application or of WAB 2.4? I do not see anything "lef": 145 in my app Config.json file. I am using the launch pad theme.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is to move the second and third icons over&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Main config.json&lt;UL&gt;&lt;LI&gt;Change left to 145 and 235 to the second and third&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Apr 2017 16:55:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578861#M15478</guid>
      <dc:creator>CCWeedcontrol</dc:creator>
      <dc:date>2017-04-19T16:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578862#M15479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have not attempted this with the launchpad theme.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Apr 2017 14:19:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578862#M15479</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-04-20T14:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578863#M15480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CC Weedcontrol,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;For the launchpad the css&amp;nbsp;location and numbers are different, along with the main config.json being "right" not "left"&lt;/P&gt;&lt;P&gt;The css file to change is&amp;nbsp;[instal dir]\server\apps\[app #]\themes\LaunchpadTheme\styles\default\css\jimu-override.css (same css rule).&lt;/P&gt;&lt;P&gt;You will have to play with the numbers yourself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Apr 2017 14:33:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578863#M15480</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-04-20T14:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578864#M15481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/349322_pastedImage_1.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Where in the main cofig.json is the change 'left" ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 May 2017 18:30:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578864#M15481</guid>
      <dc:creator>GeorgeKatsambas</dc:creator>
      <dc:date>2017-05-02T18:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578865#M15482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the widgetOnScreen array the widgets objects that have a placeholderIndex property.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 May 2017 18:50:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578865#M15482</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-05-02T18:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578866#M15483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For WAB 2.5 the custimization of On-Screen-Widgets gets a little bit easier, I would suggust. I did the following steps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL style="background-color: #ffffff; border: 0px; padding: 0px 0px 0px 30px;"&gt;&lt;LI style="border: 0px; font-weight: inherit; margin: 0.5ex 0px;"&gt;jimu.js/css/jimu.css&lt;/LI&gt;&lt;LI style="border: 0px; font-weight: inherit; margin: 0.5ex 0px;"&gt;.jimu-widget-onscreen-icon img{&lt;BR /&gt;&amp;nbsp; width: &lt;SPAN style="background-color: #ffffff;"&gt;[yourWidgetSize];&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; height: &lt;SPAN style="background-color: #ffffff;"&gt;[yourWidgetSize];&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; margin: &lt;SPAN style="background-color: #ffffff;"&gt;[yourWidgetSize];&lt;/SPAN&gt;&lt;BR /&gt;}&lt;/LI&gt;&lt;LI style="border: 0px; font-weight: inherit; margin: 0.5ex 0px;"&gt;BaseLayoutManager:&lt;UL&gt;&lt;LI style="border: 0px; font-weight: inherit; margin: 0.5ex 0px;"&gt;_createOnScreenWidgetIcon: funktion() -&amp;gt; Change jimuUtils.getPositionStyle({}) - Submethod with:&lt;UL&gt;&lt;LI style="border: 0px; font-weight: inherit; margin: 0.5ex 0px;"&gt;width: [yourWidgetSize];&lt;/LI&gt;&lt;LI style="border: 0px; font-weight: inherit; margin: 0.5ex 0px;"&gt;height: &amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;[yourWidgetSize];&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Stephanie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 07:35:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578866#M15483</guid>
      <dc:creator>StephanieKölker</dc:creator>
      <dc:date>2017-08-09T07:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578867#M15484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;which file does this occur in?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 19:23:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578867#M15484</guid>
      <dc:creator>GeorgeKatsambas</dc:creator>
      <dc:date>2017-08-09T19:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578868#M15485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi George,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the files are in the jimu.js folder. The BaseLayoutManager is in the folder layoutManagers.&lt;/P&gt;&lt;P&gt;Does this answer your question?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Aug 2017 17:43:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578868#M15485</guid>
      <dc:creator>StephanieKölker</dc:creator>
      <dc:date>2017-08-10T17:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578869#M15486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've tried lots of times to increase the icon size on multiple apps but i've never been successful. Stephanie, I tried your recommendation but i get the same results. The icon shadow size goes bigger but the actual icon picture stays the same. I am currently testing this on WAB 2.7.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2018 19:01:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578869#M15486</guid>
      <dc:creator>CCWeedcontrol</dc:creator>
      <dc:date>2018-01-31T19:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: change on-screen icon size</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578870#M15487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Start a new question and I will show you how to do this in 2.7&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2018 19:56:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-on-screen-icon-size/m-p/578870#M15487</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-01-31T19:56:22Z</dc:date>
    </item>
  </channel>
</rss>

