Hello All,
I am using Arabic language on my website, so the text alignment will be for right to left.
In the sign up page there are boxes with text inside, which you sign up using email and password.
The text inside the boxes is reflecting form left to right, how can I make from right to left?
Thanks
1 Like
Hi @jadnayif
Would you mind to share your store URL? Thanks!
1 Like
Hi @Made4uo-Ribe ,
Thank you for your respond.
Sure, kindly note that this issue occurs in each box the customer can fill info.
login page and contact us page only.
https://alnafs-almotmana.com/
Thanks for the info, check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.customer .field label {
position: absolute;
right: 10px;
}
.customer:not(.account):not(.order) {
text-align: right !important;
}
And Save.
result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like
Thank you @Made4uo-Ribe that worked just perfect.
I was trying to apply the same code on contact us page but I think something should be changed in it.
Can you please advice?
Sorry that I didn’t mention that earlier, I thought that all boxes can be fixed using the same code.