# Space settings

{% hint style="info" %}
You can adjust the width, background color, display only on desktop or mobile, margin, padding, ...
{% endhint %}

![](/files/-MLRg02fQWw5JhkLZYrF)

1. Title: Name section (in editor bar)
2. Turn off on mobile? - Not displayed on mobile.
3. Turn off on desktop? - Not displayed on desktop.

## Width

The section's maximum width and the section's content.

![](/files/-MLRixZixieEfELfxrKU)

## Margin + Padding

Buffer between sections

![](/files/-MLRkWzcyp_bv_znuCsg)

## Responsive

Use "**|**" between parameters so that you can customize the distance according to different screen sizes

Ex: Margin top

```
2.5rem|3rem|3.5rem|4rem|4.5rem|5rem|5.5rem
```

Result css:

```
.content_ {
    margin-top: 2.5rem
}
@media (min-width: 320px){
    margin-top: 2.5rem
}
@media (min-width: 576px){
    margin-top: 3.5rem
}
@media (min-width: 768px){
    margin-top: 4rem
}
@media (min-width: 992px){
    margin-top: 4.5rem
}
@media (min-width: 1200px){
    margin-top: 5rem
}
@media (min-width: 1400px){
    margin-top: 5.5rem
}
```

{% hint style="warning" %}
What is Rem?
{% endhint %}

{% content-ref url="/pages/-MLRcsw4oBkdi7jSszdp" %}
[Unit (rem)](/molla/things-to-know/unit.md)
{% endcontent-ref %}

## Background Settings

Configure background color or background image

![](/files/-MLRmVFAG-enO3QwK66Y)


---

# 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://kitisummus.gitbook.io/molla/things-to-know/space-settings.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.
