Select to view content in your preferred language

Layer List auto start location change

6622
12
Jump to solution
09-03-2015 08:14 AM
LeoLadefian4
Deactivated User

How do i set the location of the Layer List when auto start is set to true.  The Layer List covers up the zoom in and out buttons in the Launchpad Theme

Tags (1)
12 Replies
LeoLadefian4
Deactivated User

Thanks so much, that worked great, and seems to take effect for all pop-up windows for that location.  My only other question is I've imported an app from my account to the developer console, but the changes don't take place in the app I've imported.  What's the procedure for editing an imported app? downloading, unzipping and re uploading gives me and invalid app error.

0 Kudos
RobertScheitlin__GISP
MVP Emeritus

Leo,

   Change to code like this will only work if you are hosting the editied code base on your own web server. You can not get these changes back up into AGOL version of WAB.

YueWu1
by Esri Regular Contributor
Esri Regular Contributor

Hi Leo,

You can use any modern browser developer debugging tool to find the specific .css setting for this layerlist theme in the application.

Open the file under your project name: something may like this path:

/wwwroot/arcgis-web-appbuilder-1.2/apps/5/theme/LaunchpadTheme/stylee/default/css/jimu-theme.css

Under

/* css for jimu-panel- */
.jimu-on-screen-widget-panel,
.jimu-panel {

you need to change by adding this lines:

margin-top: 270px;

Also, please take a look about this documentation to get familiar about the architecture of the Web App Builder

Development overview—Web AppBuilder for ArcGIS (Developer Edition) | ArcGIS for Developers

Hope this helps