# How do I hide images from the map but keep them in the profile?

If you want to keep the image associated with an element in the element profile but hide it in the map, use the `element-image-visibility` property in the [`@settings` section](/guides/default-view-settings.md#change-default-view-settings-in-the-advanced-editor)) of the [advanced editor](/overview/user-interfaces/view-editors.md) (from the map, hit `.` to go there).

### Hide images from all elements

To hide images from all the elements in the map, add this line to the @settings code:

```scss
@settings {
  element-image-visibility: hidden;
}
```

### Hide images from a subset of elements

To hide images from just a subset of elements in the map, you'll need to add the following line of code to just the subset of elements:

```scss
Organization {
  image-visibility: hidden;
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kumu.io/frequently-asked-questions/how-do-i-hide-images-from-the-map.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
