As I learned from the support, I use “direction:rtl;” to change the sides of elements.
The code doesn’t work on the top element.
It only remove the text near the photo
Can you please tell me why?
As I learned from the support, I use “direction:rtl;” to change the sides of elements.
The code doesn’t work on the top element.
It only remove the text near the photo
Can you please tell me why?
Because that image is positioned absolute to the left side, and when you set direction rtl, text that was on right before, it is moved on the left, which is under the image in this example.
I guess direction RTL doesnt affect elements with position absolute, or you didnt set rtl to whole section?
Anyway, in this case, now you would need manually move image from left, to right. You can find this when you select an image tag or its wrapper, under position:absolute, theres options to position it precisely.