<?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: launchpad theme height in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800315#M5143</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Feb 2016 18:38:54 GMT</pubDate>
    <dc:creator>LefterisKoumis</dc:creator>
    <dc:date>2016-02-24T18:38:54Z</dc:date>
    <item>
      <title>launchpad theme height</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800308#M5136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to insert across the page on the top of the lanuchpad theme a div that host among other components, your own menu? I was able to do that in flex by modifying the index.html, but it proves to be more difficult with the js due to the claro class. The primary target for this app is for the desktop user, not the mobile user. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;body class="claro jimu-main-font"&amp;gt;
&amp;nbsp; &amp;lt;div style="height:50px; width:100%; text-align:left; background-color:#3892D2"&amp;gt;
&amp;nbsp; &amp;lt;div id="main-loading"&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:16:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800308#M5136</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2021-12-12T09:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: launchpad theme height</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800309#M5137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lefteris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; You need to place your div in the mani-page div.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;div id="main-page"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div style="height:50px; width:100%; text-align:left; background-color:#3892D2"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id="jimu-layout-manager"&amp;gt;&amp;lt;/div&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and set the main config.json map objects top property to 50.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;"map": {
&amp;nbsp;&amp;nbsp;&amp;nbsp; "3D": false,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "2D": true,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "position": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "left": 0,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "top": 50,&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:16:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800309#M5137</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T09:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: launchpad theme height</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800310#M5138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert, it works. However, when I enter content in that div, it creates another 50px space under the original div. How can I prevent this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;div id="main-page"&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;div style="width:100%; text-align:left; background-color:#3892D2"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;script&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ( window.location.href.indexOf("district1/") &amp;gt; -1) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; document.write('&amp;lt;img src="assets/images/banner1.jpg"&amp;nbsp; height="50" /&amp;gt;');
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else if ( window.location.href.indexOf("district8/") &amp;gt; -1) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; document.write('&amp;lt;img src="assets/images/banner8.jpg"&amp;nbsp; height="50" /&amp;gt;');
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert("no district image");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/script&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;
&amp;lt;div id="jimu-layout-manager"&amp;gt;&amp;lt;/div&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:16:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800310#M5138</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2021-12-12T09:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: launchpad theme height</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800311#M5139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lefteris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Because the div is being added above the "jimu-layout-manager" div there is actually no need for the config.json map change (set the top property back to 0):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"map": {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "3D": false,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "2D": true,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "position": {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "left": 0,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "top": 0,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "right": 0,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "bottom": 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 17:48:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800311#M5139</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-02-18T17:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: launchpad theme height</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800312#M5140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&amp;nbsp; I ended up moving the "jimu.." above the div and changed the config.json to top:85 because I wanted to add another div for a custom menu under the banner.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 19:36:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800312#M5140</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2016-02-18T19:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: launchpad theme height</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800313#M5141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert, I how do I change the locations of the tools pop ups when you click on a folder? I assume with the above modifications it affected the display location. Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="185432" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/185432_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Feb 2016 15:57:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800313#M5141</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2016-02-19T15:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: launchpad theme height</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800314#M5142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lefteris,&lt;/P&gt;&lt;P&gt;You will have to change the AnchorBarController&lt;/P&gt;&lt;P&gt;[install dir]\server\apps\[app#]\themes\LaunchpadTheme\widgets\AnchorBarController\Widget.js&lt;/P&gt;&lt;P&gt;(Change line 6)&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _getOffPanelPosition: function(dockableItem, widgetBox){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var position = {},
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iconBox = domGeometry.position(dockableItem.iconItemNode),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapBox = domGeometry.getContentBox(jimuConfig.mapId);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; position.bottom = mapBox.h - (iconBox.y - (MIN_MARGIN + 50));

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (window.isRTL) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(iconBox.x + iconBox.w - widgetBox.w &amp;lt; 0){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; position.left = 0;
&amp;nbsp;&amp;nbsp;&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;&amp;nbsp;&amp;nbsp; position.left = iconBox.x + iconBox.w - widgetBox.w;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&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; if(iconBox.x + widgetBox.w &amp;gt; mapBox.w){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; position.right = 0;
&amp;nbsp;&amp;nbsp;&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;&amp;nbsp;&amp;nbsp; position.right = mapBox.w - iconBox.x - widgetBox.w;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return position;
&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:16:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800314#M5142</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T09:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: launchpad theme height</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800315#M5143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2016 18:38:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800315#M5143</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2016-02-24T18:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: launchpad theme height</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800316#M5144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;Sometimes, I noticed that when I access the app on another workstation that have smaller resolutions the tools from the launchpad theme appear on the right side of the screen! Can it be prevented and be displayed on the top of the menu? Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/191053_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Mar 2016 17:04:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800316#M5144</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2016-03-15T17:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: launchpad theme height</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800317#M5145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lefteris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I don't use the launchpad theme with a header like you are doing here so I have not seen this and don't have any suggestions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Mar 2016 17:53:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800317#M5145</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-03-15T17:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: launchpad theme height</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800318#M5146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Robert. It seems that this customization does not apply for the 2.0 version. Position.bottom has no effect on the location of the tools. How can it be resolved? Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE 5/9&lt;/P&gt;&lt;P&gt;For those of you who want to perform m the same task in the version 2.0, just change the position.top under the _getGroupPanelPosition (don't confuse it with the _getOffPanelPosition).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my case, in line 5, I subtracted 100 px from the position.top.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;_getGroupPanelPosition: function(dockableItem, widgetBox){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var position = {},
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iconBox = domGeometry.position(dockableItem.iconItemNode),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapBox = domGeometry.getContentBox(jimuConfig.mapId);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; position.top = iconBox.y - widgetBox.h - MIN_MARGIN-100;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (window.isRTL) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(iconBox.x &amp;lt; widgetBox.w + MIN_MARGIN){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; position.left = MIN_MARGIN;
&amp;nbsp;&amp;nbsp;&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;&amp;nbsp;&amp;nbsp; position.left = iconBox.x - widgetBox.w + iconBox.w;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&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; if(iconBox.x + widgetBox.w + MIN_MARGIN &amp;gt; mapBox.w){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; position.left = mapBox.w - widgetBox.w - MIN_MARGIN;
&amp;nbsp;&amp;nbsp;&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;&amp;nbsp;&amp;nbsp; position.left = iconBox.x;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return position;
&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/PRE&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;/PRE&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:16:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800318#M5146</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2021-12-12T09:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: launchpad theme height</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800319#M5147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert, I am trying to accomplish similar task with the foldable theme. Move the header 50px so I can place a div above it. However what ever I tried, including a fixed div, the header is not moving. thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2017 21:46:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800319#M5147</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2017-04-11T21:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: launchpad theme height</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800320#M5148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;I am not in front of a computer right now but I think you need to move the header widget down using the main config.json&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2017 22:37:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800320#M5148</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-04-11T22:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: launchpad theme height</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800321#M5149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2017 22:40:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/launchpad-theme-height/m-p/800321#M5149</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2017-04-11T22:40:40Z</dc:date>
    </item>
  </channel>
</rss>

