Make a poput text from right to left

i use a popup widwet but i want to make a text from right to left (arabic )

how can make this ?

this image to explan

1 Like

Hi @Youssef1,

You can try pasting the following code into the Custom CSS section of your widget (you can find it in the Settings tab):

.global-styles, [class*="BuilderBlock__Content"] [class*="WidgetBackground__Content"] {
  direction: rtl;
}

Let me know if it works!

2 Likes

i put the code but doesn`t change @Masha

Apologies, I took a look at your actual widget and this code should do the trick in your case:

.global-styles, [class*="Content__Container"] {
  direction: rtl;
}
1 Like