How do I configure the elevation profile chart to stay open when first opening the app? Thanks
Solved! Go to Solution.
Zach Green when you are configuring the app experience in ArcGIS Online go to the "Theme" tab and at the very bottom of that panel you'll see a section titled 'Custom css' where you can paste in css that modifies the default app behavior. If you add this css and save the panel should be open by default when the app opens.
#panelContent{ height:210px;opacity:1;visibility:visible;}
Zach Green when you are configuring the app experience in ArcGIS Online go to the "Theme" tab and at the very bottom of that panel you'll see a section titled 'Custom css' where you can paste in css that modifies the default app behavior. If you add this css and save the panel should be open by default when the app opens.
#panelContent{ height:210px;opacity:1;visibility:visible;}
Awesome! Thanks so much Kelly!