Does the theme support RTL languages?
As of version 3.5.3, we've added some helper styles to better support right-to-left languages. To convert your site into a RTL language, you'll have to add a few lines of code to the main stylesheet.
First, open up your theme code editor by navigating to /admin/themes, clicking “Actions” on your copy of Motion, and then “Edit code”.
Open the theme.scss.liquid file in your snippets folder.
Paste this code at the bottom of the file:
html, .article__content { direction: rtl; } .article--layout { direction: ltr; }