Webflow does support RTL. You just need to develop correctly. We have a system called RTLflow, which we use for RTL Webflow Development: https://derokki.dev/rtlflow
RTL could look better in the CMS, however that's merely a visual issue and can be solved through creating a Google Extension for that purpose.
From comments I've seen so far, it seems like this features should also apply to Grids. I've seen it reported multiple times as the biggest pain of flipping a page to RTL.
For those visiting from this link: https://wishlist.webflow.com/ideas/WEBFLOW-I-288
Just set the document writing direction to RTL by applying the dir-attribute to eh root HTML element. Embed the Code below on each page:
EMBED 1:
<style>
:root { direction: rtl; }
</style>
EMBED 2:
<script>
document.documentElement.setAttribute('dir', 'rtl');
document.querySelector('.css_direction').remove();
</script>
It should look as in the attached image.
You can copy-paste it from here: https:///derokki.dev/rtlflow
Webflow does support RTL. You just need to develop correctly. We have a system called RTLflow, which we use for RTL Webflow Development: https://derokki.dev/rtlflow
RTL could look better in the CMS, however that's merely a visual issue and can be solved through creating a Google Extension for that purpose.
Please add it!!! Please!!!
Is it support RTL now?
From comments I've seen so far, it seems like this features should also apply to Grids. I've seen it reported multiple times as the biggest pain of flipping a page to RTL.