<?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 How to reduce/increase footer height in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-reduce-increase-footer-height/m-p/461430#M12125</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Tab Theme, how can I reduce the height of the Footer Widget?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to change style.css file in &amp;lt;app_name&amp;gt;\themes\TabTheme\widgets\Footer\css\style.css like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.jimu-widget-footer{&lt;/P&gt;&lt;P&gt;&amp;nbsp; height: 50%;&amp;nbsp;&amp;nbsp; /*changed from 100 to 50*/&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but this doesnot do anything after I refresh the page.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Jun 2015 09:06:02 GMT</pubDate>
    <dc:creator>HumzaAkhtar</dc:creator>
    <dc:date>2015-06-16T09:06:02Z</dc:date>
    <item>
      <title>How to reduce/increase footer height</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-reduce-increase-footer-height/m-p/461430#M12125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Tab Theme, how can I reduce the height of the Footer Widget?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to change style.css file in &amp;lt;app_name&amp;gt;\themes\TabTheme\widgets\Footer\css\style.css like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.jimu-widget-footer{&lt;/P&gt;&lt;P&gt;&amp;nbsp; height: 50%;&amp;nbsp;&amp;nbsp; /*changed from 100 to 50*/&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but this doesnot do anything after I refresh the page.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2015 09:06:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-reduce-increase-footer-height/m-p/461430#M12125</guid>
      <dc:creator>HumzaAkhtar</dc:creator>
      <dc:date>2015-06-16T09:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to reduce/increase footer height</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-reduce-increase-footer-height/m-p/461431#M12126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/28108" target="_blank"&gt;Humza Akhtar&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The footer widget is already small on the tab theme. In order to change the height of the widget you need to do it in the main config for the app or in the tab theme in the stemapp so it will load when you create a new application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I will show you&amp;nbsp; how to change the size of the footer to 0 on your map but you can adjust the numbers however you like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;config.json&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change the height value to "0"&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "uri": "themes/TabTheme/widgets/Footer/Widget",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "positionRelativeTo": "browser",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "position": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "left": 0,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "right": 0,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "bottom": 0,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "height": 0
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also turn off the visibility of the footer widget in the builder&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change the bottom value to "0"&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "uri": "themes/TabTheme/widgets/SidebarController/Widget",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "positionRelativeTo": "browser",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "position": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "left": 0,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "top": 44,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "bottom": 0&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change the bottom value to "0"&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "uri": "widgets/AttributeTable/Widget",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "positionRelativeTo": "browser",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "position": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "bottom": 0&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:31:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-reduce-increase-footer-height/m-p/461431#M12126</guid>
      <dc:creator>StanMcShinsky</dc:creator>
      <dc:date>2021-12-11T20:31:08Z</dc:date>
    </item>
  </channel>
</rss>

