Remove 'Operational layers' text

543
2
Jump to solution
05-03-2018 01:50 PM
-j-b-
by
New Contributor III

Hello everyone, 

Is it possible to remove or change the text 'Operational layers' from the layer list widget?

Thank you,

Julianna

0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Julianna,

   Sure. There are two ways to go about that.

  1. In the LayerList widget folder open the nls/strings.js and replace the titleLayers: "Operational layers" with titleLayers: ""
  2. Add a new css rule to the css/style.css 
    .jimu-widget-layerList .layers-section .layer-list-title{
      visibility: hidden;
    }‍‍‍

View solution in original post

2 Replies
RobertScheitlin__GISP
MVP Emeritus

Julianna,

   Sure. There are two ways to go about that.

  1. In the LayerList widget folder open the nls/strings.js and replace the titleLayers: "Operational layers" with titleLayers: ""
  2. Add a new css rule to the css/style.css 
    .jimu-widget-layerList .layers-section .layer-list-title{
      visibility: hidden;
    }‍‍‍
-j-b-
by
New Contributor III

Thank you so much Robert! You are extremely helpful! 

Kind Regards,

Julianna

0 Kudos