# How do I remove unneeded controls?

When you're adding [controls](https://docs.kumu.io/guides/controls) through the Basic Editor, you might sometimes add a duplicate control by accident, or add a control that says "No values found for \[some field name]". To remove any of those unneeded controls, you can use the Basic Editor or the Advanced Editor.

## Basic Editor

* Click the settings icon on the right ![](https://1181816445-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FkXSW1nEf49ISqGxYuRfS%2Fuploads%2Fgit-blob-29572adb5b74c3a9b2db8fca66f2a4a00fe6b652%2Fsliders-h.svg?alt=media) to open the Basic Editor, then scroll down to "Add custom control"**.**  You'll see all existing controls listed out below.
* When hovering over an existing control, click on the edit pencil to edit your existing control, or click on the trash icon to delete it:

<figure><img src="https://1181816445-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FkXSW1nEf49ISqGxYuRfS%2Fuploads%2FNlsNS4tbPwFKyLeeGGaU%2FScreenshot%202025-06-16%20at%201.03.11%E2%80%AFPM.png?alt=media&#x26;token=8dd1d410-fb40-4f61-9169-41a101993299" alt=""><figcaption></figcaption></figure>

## Advanced Editor

Open up the Advanced Editor, and, unless you have added [partial views](https://docs.kumu.io/guides/partial-views), there will be a block of code right at the top starting with `@controls`.

```scss
// Line 1 of your Advanced Editor:
@controls {
  ...There will be other code inside this block
}
```

If you don't want *any* controls or "No values found for \[some field name]" messages on your map, simply delete the entire `@controls` block, then click "Save" at the bottom of the editor.

If you have some controls in there that you would like to preserve, you'll first need to learn the basics of how to read `@controls` code, so that you can tell which controls you want to delete and which you want to keep.&#x20;

* If you want to delete all controls in a certain region of your map, then delete all the code saying `top`, or `top-left`, or `bottom` etc. Delete the whole block to delete all the controls in that region.&#x20;
* If you want to delete just one control, locate it in the list of your controls and delete that whole block. You can recognize a control block by the fact that the first line is `filter`, or `showcase`, or `cluster`, or `focus`.&#x20;

You can learn more about reading `@controls` code in [our full guide on controls](#add-controls-through-the-advanced-editor). Of course you can always send us an email at <support@kumu.io> to help out!
