> For the complete documentation index, see [llms.txt](https://docs.kumu.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kumu.io/guides/layouts/fixed.md).

# Fixed

With the fixed layout, you position everything manually. Just click and drag an element to change its location, or click and drag a connection to change its curvature. If you want to change the starting point of a connection (to make it start from another element), click on the starting point of the connection and drag it over to another element. The same steps can be used to change the ending point of a connection.

If you're building a fixed map with [Sketch Mode](/getting-started/first-steps.md#sketch-mode), you can hold the `Alt` key on your keyboard, then click and drag elements and connections to move them.

**Good to know:** The [system templates](/guides/templates.md#system-template) are set to a fixed layout by default.

## Changing from force-directed to fixed layout:

1. Click on the settings icon ![](/files/4Lc5bqaUm5VeFBw2pPDH) on the right side of the map
2. Select **Customize defaults**
3. Scroll down to the **General settings** section to change the "Layout" to "off"
4. In the same section, change "Default element behavior" to "fixed"

If you would rather do this in the [Advanced Editor](/overview/user-interfaces/view-editors.md#advanced-editor), here is the code you can use to switch to a fixed layout:

```scss
@settings {
    layout: static;
}
```

If you were previously using a force-directed layout, you may need to pin all the existing elements in place. You can do this by pressing `A` on your keyboard to select all, and then by clicking the pin button in the lower right of the element profile or pressing `P` on your keyboard.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.kumu.io/guides/layouts/fixed.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
