<?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 Shortlist BETA - Can you disable the &amp;quot;Start&amp;quot; button on Mobile? in Classic Esri Story Maps Questions</title>
    <link>https://community.esri.com/t5/classic-esri-story-maps-questions/shortlist-beta-can-you-disable-the-quot-start-quot/m-p/738478#M8358</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;I did not see this referenced anywhere. &amp;nbsp;But, one of our ArcGIS Online Publishers from our marketing team had an interesting note on the Shortlist BETA that I'm not sure if anyone has a solution to:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"Made a single tab Shortlist BETA Story Map&amp;nbsp;for our webpage. &amp;nbsp;Works great! &amp;nbsp;However, on a mobile it opens to a start button rather than the map itself. &amp;nbsp;Seems clunky for end-users. &amp;nbsp;Is there any way to disable this?"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;From what I can see it appears to be part of the multi-tab functionality, as when I add multiple tabs the start button goes away and that page is replaced with tab names. &amp;nbsp;I imagine we could use the developer tools to customize the story map and bypass the start page. &amp;nbsp;But has anyone been able to resolve this with a setting we're not seeing?&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Mar 2017 20:21:00 GMT</pubDate>
    <dc:creator>JamesTchorzynski1</dc:creator>
    <dc:date>2017-03-24T20:21:00Z</dc:date>
    <item>
      <title>Shortlist BETA - Can you disable the "Start" button on Mobile?</title>
      <link>https://community.esri.com/t5/classic-esri-story-maps-questions/shortlist-beta-can-you-disable-the-quot-start-quot/m-p/738478#M8358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;I did not see this referenced anywhere. &amp;nbsp;But, one of our ArcGIS Online Publishers from our marketing team had an interesting note on the Shortlist BETA that I'm not sure if anyone has a solution to:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"Made a single tab Shortlist BETA Story Map&amp;nbsp;for our webpage. &amp;nbsp;Works great! &amp;nbsp;However, on a mobile it opens to a start button rather than the map itself. &amp;nbsp;Seems clunky for end-users. &amp;nbsp;Is there any way to disable this?"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;From what I can see it appears to be part of the multi-tab functionality, as when I add multiple tabs the start button goes away and that page is replaced with tab names. &amp;nbsp;I imagine we could use the developer tools to customize the story map and bypass the start page. &amp;nbsp;But has anyone been able to resolve this with a setting we're not seeing?&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2017 20:21:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/classic-esri-story-maps-questions/shortlist-beta-can-you-disable-the-quot-start-quot/m-p/738478#M8358</guid>
      <dc:creator>JamesTchorzynski1</dc:creator>
      <dc:date>2017-03-24T20:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Shortlist BETA - Can you disable the "Start" button on Mobile?</title>
      <link>https://community.esri.com/t5/classic-esri-story-maps-questions/shortlist-beta-can-you-disable-the-quot-start-quot/m-p/738479#M8359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi James,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is not a setting in the app to hide this intro page on mobile, but if you download the app from the GitHub repo (&lt;A class="link-titled" href="https://github.com/Esri/storymap-shortlist/releases/tag/V2.2.3" title="https://github.com/Esri/storymap-shortlist/releases/tag/V2.2.3" rel="nofollow noopener noreferrer" target="_blank"&gt;Release V2.2.3 · Esri/storymap-shortlist · GitHub&lt;/A&gt;&amp;nbsp;), you can make a simple edit to accomplish what you are looking for. You will need to open the index.html in a text editor, go to the section designated for adding custom css rules (around line 72), and add this css rule: &amp;nbsp;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&amp;lt;style&amp;gt;
 &lt;SPAN class="comment token"&gt;/* CUSTOM CSS RULES */&lt;/SPAN&gt;
 &lt;SPAN class="selector token"&gt;#mobileIntro&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
 &lt;SPAN class="property token"&gt;display&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; none &lt;SPAN class="important token"&gt;!important&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
 &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
 &amp;lt;/style&amp;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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:26:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/classic-esri-story-maps-questions/shortlist-beta-can-you-disable-the-quot-start-quot/m-p/738479#M8359</guid>
      <dc:creator>MarkCooney</dc:creator>
      <dc:date>2021-12-12T07:26:49Z</dc:date>
    </item>
  </channel>
</rss>

