# How do I add text dropdowns to my map overview?

Text dropdowns are a great way to condense large texts or different types of information in your [map overview](https://docs.kumu.io/overview/user-interfaces/map-editor#side-panel). Simply click on the dropdown-arrow to reveal more information:

<figure><img src="https://1181816445-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FkXSW1nEf49ISqGxYuRfS%2Fuploads%2FmTowpjq6EJI2JUX0s0tl%2FText%20dropdowns.gif?alt=media&#x26;token=b6f503f3-debb-47c5-849f-aff5337fbaca" alt=""><figcaption></figcaption></figure>

To create them, add the following code to your map overview:&#x20;

```
<details> 
<summary> Text that should be visible at all times goes here </summary> 
Text that shows up after clicking the arrow shows up here.  
</details> 
```

Note that you can use as many of these blocks as you wish, to create different sections:

```
<details>
<summary> What are citrus fruits? </summary> 
Here are some examples:
1. Lemon 
2. Oranges 
3. Grapefruit 
</details>

<details> 
<summary> Countries commonly ranked "happiest in the world": </summary>  
- Denmark 
- Costa Rica 
- Australia 
</details>
```
