# Custom Settings

You can also use `li-settings:custom` to create other settings which can be adjusted in the Shopfy Theme Editor. Add `li-settings:custom="example-name"` to a Webflow Embed and place the Section-Settings-Schema inside of it. In this example, we are creating a range slider.

{% columns %}
{% column %}
{% code title="Webflow" fullWidth="false" %}

```json
{
  "type": "range",
  "id": "font_size",
  "min": 12,
  "max": 24,
  "step": 1,
  "unit": "px",
  "label": "Font size",
  "default": 16
}
```

{% endcode %}
{% endcolumn %}

{% column %}

<figure><img src="/files/vFDvAJoK47fgTCvoHfZv" alt=""><figcaption></figcaption></figure>
{% endcolumn %}
{% endcolumns %}

You can refer to the setting inside your section like this: `style="font-size: {{ section.settings.font_size }}"`

The value of the attribute `li-settings:custom` will be used as a header inside the Shopify Theme Editor. This makes it easier to organize and group related settings inside one embed, so everything looks cleaner later on in the Shopify Theme Editor. If you do not want a header to appear, leave the value of `li-settings:custom` empty.

To group your settings into one header, turn your settings JSON into an array, like this:

{% columns %}
{% column %}
{% code title="Webflow" fullWidth="false" %}

```json
[
  {
    "type": "range",
    "id": "font_size",
    "min": 12,
    "max": 24,
    "step": 1,
    "unit": "px",
    "label": "Font size",
    "default": 16
  },
  {
    "type": "text",
    "id": "headline",
    "label": "Headline",
    "default": "Example Headline"
  }
]
```

{% endcode %}
{% endcolumn %}

{% column %}

<figure><img src="/files/3id2f6D9heQfX9ncoe3P" alt=""><figcaption></figcaption></figure>
{% endcolumn %}
{% endcolumns %}


---

# 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.liquiflow.app/section-settings/custom-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.
