Hello team,
I use trader theme, I use 2 langauges ( Arabic and English ). In english version the footer is aligned correctly without any problem as you can see in the following picture:
BUT in Arabic version, the title of Email subscription not movie into right when user select Arabic language as illustrated in the below picture:
in addition, to adjust the spaces between policies links that marked by white square
Any suggestion it will be much appreciated.
Thank you
1 Like
@Jo-Ibra
You can try css tweaks,
I. CSS: fix title alignment (arabic RTL)
html[lang="ar"] .footer-subscription-title {
direction: rtl;
text-align: right;
}
replace .footer-subscription-title with actual class
II. adjust policy links spacing
html[lang="ar"] .policy-links {
direction: rtl;
display: flex;
gap: 20px;
}
verify .policy-links via inspection
Steps: add this to your theme’s custom CSS. like theme.css or rtl.css, ensure lang=“ar” is applied in arabic mode.
Hope this helps you.
Hello @Jo-Ibra
Thank you for submitting your query to the Shopify community. I’d be happy to assist you. Could you please provide the store URL and password (if it’s password-protected) so I can review and get back to you with an update?
Thank you for your replay, you are right,I agree with your solution, it is worked, However, after modified others CSS issues in RTL, The mobile version become as a miss. I reverted back to get the Arabic translation as Auto instead of change the whole theme into RTL. It is working as expected, finally, trader theme not fully supported RTL, It is need heavy styling customization for both Desktop and Mobile version,