By default, your Woobox campaign does not support RTL (right-to-left) text input in its form fields. However, if you are on a grandfathered/legacy Advanced plan or higher, or any of the current plan levels, you can use this quick and easy CSS to allow that method of typing in the fields.
Classic Campaign Templates
In your campaign’s Design section, click the “painter’s palette” icon, then select CSS & JavaScript, then finally Custom CSS.

Copy the code below, and paste it into the CSS editor. Now your form fields will accept typing in right-to-left languages.

AI Site Builder
In Sites made with the AI Builder, go to the Builder section and click on the styles.ccs tab.

CSS to add:
body{
direction: rtl !important;
}
input:not(.btn,.url-copy), textarea, select {
text-align: right !important;
direction: rtl !important;
/unicode-bidi: bidi-override !important;/
}
.page-component ol {
margin: 16px 0;
padding: 0 40px;
}
After adding the code:
