From b4bb68f996ec9f9218ebe1db239405ff70e82bd0 Mon Sep 17 00:00:00 2001 From: borayeris Date: Fri, 12 Sep 2025 19:28:35 +0300 Subject: [PATCH] RTL support for child theme rtl.css file is needed for RTL language support. If it doesn't exist in the theme folder, translation files doesn't work. --- rtl.css | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 rtl.css diff --git a/rtl.css b/rtl.css new file mode 100644 index 00000000..8b243df5 --- /dev/null +++ b/rtl.css @@ -0,0 +1,9 @@ +body { + font-smooth: always; + direction:ltr; + line-height: 1.5; + unicode-bidi: embed; +} +body > * { + direction:rtl !important; +}