Skip to main content
All CollectionsFAQsDisplay
How to Change Text Direction in Tables for a Jewish/Arabian Store?
How to Change Text Direction in Tables for a Jewish/Arabian Store?
Updated over 3 months ago

It is possible to change the direction of writing, not just for the sizing table, but for the whole Kiwi modal that is loading the Kiwi Sizing Chart & Recommender components. This is done by using custom CSS. HTML language property is recommended but not required.

To do this, go to the "Advanced Settings," find the Custom CSS tab, then insert the following code:

.kiwi-sizing-modal *{
 direction: rtl;
}

This will change the direction of the text for the whole modal. Additionally, you can also set localization, for example, if you have an Israeli store:

html[lang="he-IL"]
.kiwi-sizing-modal *{
 direction: rtl;
}

Where “he” stands for the Hebrew language, and “IL” stands for Israel per ISO 3166 code. The same can be set for the Arabic ar-Country Code.

An example for Saudi Arabia would be:

html[lang="ar-SA"]
.kiwi-sizing-modal *{
 direction: rtl;
}

Please contact Kiwi Support if you have any questions or need help with setting this up.

Did this answer your question?