# How do I change font size?

The quickest way to change font size on your map is through the [default view settings](/guides/default-view-settings.md) menu.

1. Click the settings icon ![](/files/4Lc5bqaUm5VeFBw2pPDH)to open the [*Basic Editor*](/overview/user-interfaces/view-editors.md#basic-editor)
2. Click **Customize defaults**, scroll down to the **Font defaults** section, and use the slider to adjust your view's base font size.

This solution is quick, but not the most flexible. Your font size changes will apply to everything on the map, and you're constrained to a maximum font size of `60` and a minimum font size of `1`.

For a more flexible solution, you can use the [*Advanced Editor*](/overview/user-interfaces/view-editors.md#advanced-editor) to set the `font-size` property directly.

One way to do that is in the `@settings` block:

```
@settings { 
  font-size: 100;
}


```

This gives you precise control over the font size—you can change the `100` to any positive number. However, this solution still applies your font size to everything on the map.

If you want to change the font size for a specific group of elements and connections, you can use any [selectors](/guides/selectors.md):

```
element { 
  font-size: 75;
}
```

The code snippet above will only change the font size for elements, but will leave connections and loops at the default font size.

For more information on how to change the `element` selector to something even more specific (for example, just the elements whose Element Type is "Organization"), see [*our full guide on selectors*](/guides/selectors.md).


---

# 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-change-font-size.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.
