> For the complete documentation index, see [llms.txt](https://kitisummus.gitbook.io/molla/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kitisummus.gitbook.io/molla/things-to-know/space-settings.md).

# 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)
