can someone help me align this page right?
even if it will be only the headings it will help
Hi @Itamar2020 ,
This page can only be edited if you are on Shopify Plus. However, if you switch the default language of your store to Arabic (or any RTL language) the checkout should automatically adapt to it. I cannot guarantee this as I’ve not tried it personally.
but i can not change the default to arabic or hebrew
so it does not help
are you sure we can not add some external css code?
maybe for diresction ltr ot something?
Yes, I am sure. There is no HTML, CSS, or JS allowed in the Checkout Page unless you are on Shopify Plus.
but can you help me with code for making the whole website ltr?
Well for that all you need to do is add
body * {
direction: rtl;
}
This will do it for the whole website, EXCEPT for the Checkout page.
where do i paste it?
does not it supposted to be LTR instead RTL ?
Hi Itamar2020,
“Additional CSS” or “Custom CSS” section in your Shopify theme customization settings. If you want left-to-right direction, use ltr instead of rtl. Save the changes and preview to ensure it works as expected.
body * {
direction: rtl;
}
if you want left-to-right (LTR), you should use this code:
body * {
direction: ltr;
}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
LTR → Left to Right (Which is how I am typing now. Start from the left, end on the right. English is typed this way)
RTL → Right to Left (Start from the Right, end on the left. Arabic is typed this way)
Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag type the following. Screenshot attached for reference.
Screenshot is for reference only, the correct code to paste is the one shown above.
still not working, writing you in private