All Collections
Widgets and Advanced How-to's
How to Make One Page LTR on a RTL Site
How to Make One Page LTR on a RTL Site

Use this script to change individual pages from RTL to LTR.

Charlene Abranilla avatar
Written by Charlene Abranilla
Updated over a week ago

If you have RTL set as the default on your site, then the following script in the Head code on the page you want to be LTR will remove the RTL setting.


Requires that the default orientation of your site is RTL.


  1. Navigate to the page you want to make LTR in the Pages section of your dashboard

  2. Select the page, and press the </> code button

  3. Add the following code to the Body section and save.

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
(function($) {
jQuery(document).ready(function() {
remove_RTL();
});
function remove_RTL() {
$('html').removeAttr('dir');
}
})(jQuery);
</script>
Did this answer your question?