# Custom Block Title

### Explanation

First, you have to check the block class. You can use the browser site inspector.

E.g for: **Block #5** it will be -> *.rui-fp-block--5*

* Breakpoints:

  ```scss
    xs: 0,
    sm: 320px,
    md: 768px,
    lg: 1100px,
    xl: 1300px,
    xxl: 1900px
  ```

### Sample SCSS code to add

Advanced -> Raw SCSS

```scss
/* Block #5 */
.rui-fp-block--5 {
	.rui-block-title {
		@include media-breakpoint-up(lg) {
		color: red;
		}
		
		@include media-breakpoint-only(md) {
		color: purple;
		}
				
		@include media-breakpoint-between(xs, sm) {
		color: blue;
		}
	}
}
```

Results:

{% tabs %}
{% tab title="Mobile" %}

<figure><img src="/files/depvtJPuN64Pt4io2rM4" alt=""><figcaption></figcaption></figure>
{% endtab %}

{% tab title="Tablet" %}

<figure><img src="/files/cKgQtKOrSksq48KlO0vd" alt=""><figcaption></figcaption></figure>
{% endtab %}

{% tab title="Desktop" %}

<figure><img src="/files/jJqxh3cSup7SG9nRXRm8" alt=""><figcaption></figcaption></figure>
{% endtab %}
{% endtabs %}


---

# 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://rosea.gitbook.io/monocolor/demo-content/front-page-blocks/advanced-options/custom-block-title.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.
