Select to view content in your preferred language

remove/hide settings section from editor widget.

408
1
Jump to solution
12-14-2023 01:12 PM
LefterisKoumis
Frequent Contributor

Is there a setting to remove/hide the settings section in the Editor widget?

LefterisKoumis_0-1702588346978.png

@JoelBennett 

0 Kudos
1 Solution

Accepted Solutions
JoelBennett
MVP Regular Contributor

Adding a CSS selector like this appears to work:

<style type="text/css">
    div.esri-editor calcite-accordion-item[data-testid="settings"] {
        display: none;
    }
</style>

 

View solution in original post

1 Reply
JoelBennett
MVP Regular Contributor

Adding a CSS selector like this appears to work:

<style type="text/css">
    div.esri-editor calcite-accordion-item[data-testid="settings"] {
        display: none;
    }
</style>