# RTL Interface

<figure><img src="https://2392718208-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FjCQEtIvsTA0eOyo5BCXE%2Fuploads%2FzI3d7JLpZdi0ywDybhP1%2Falpha-moodle-rtl.png?alt=media&#x26;token=07c37fca-717e-4322-803d-1ed080ba0e70" 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 %}
