Background of the issue:
I am working on the site hidden link and I want to ensure that English content that is not translated appears in English instead of being inverted. Here's the link to the specific page and section that im referring to, its the section right above the footer hidden link
Symptoms:
RTL content appearing weird on the live site.
Questions:
How can I make sure that English content that is not translated appears in English instead of being inverted?
Thank you for contacting us and I'd be happy to assist.
To ensure that specific untranslated English (or left-to-right) content shows correctly on the right-to-left language pages, you can add a special class name 'ltr-content' to that content's row/container in the Elementor builder.
After that, you can include the following custom CSS in a generic CSS code section (like WP Admin -> Appearance -> Customize -> Additional CSS):
.ltr-content {
direction: ltr;
}
This will ensure that those sections are always treated as the 'left-to-right' content.