> For the complete documentation index, see [llms.txt](https://rosea.gitbook.io/space-moodle-theme/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rosea.gitbook.io/space-moodle-theme/getting-started/rtl-interface.md).

# RTL Interface

Space is fully compatible with RTL languages.

<figure><img src="https://2934894637-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FbCvyqQFWjULWnGrw3L3Z%2Fuploads%2Fr49infdbOXFTPG7ZzQep%2Frtl.png?alt=media&amp;token=fbfd0a1e-9201-44e5-9ff4-fb2121cc4f53" alt=""><figcaption></figcaption></figure>

### Hide element on RTL/LTR layout

If you want to hide a paragraph or anything else on the RTL/LTR layout just use a dedicated class:

* *dir-ltr-hide*
* *dir-rtl-hide*

{% code overflow="wrap" lineNumbers="true" %}

```html
<p class="dir-ltr-hide">This paragraph is hidden on LTR, standard layout.</p>
<p class="dir-rtl-hide">This paragraph is hidden on RTL, right to left layout.</p>
```

{% endcode %}
