I've just ordered Nop Playground responsive theme for my site www,creativetoystore.com
I see a problem with RTL support for Arabic. The Arabic words are disconnected.
you can check
http://creativetoystore.com/storeclosed
When switched to Arabic language (RTL)
the English phrase "THIS STORE IS CURRENTLY CLOSED"
is written in Arabic as
"ه ذ ا ا ل م ت ج ر ا ل إ ل ك ت ر و ن ي م غ ل ق ح ا ل ي ا"
this is not correct as the letters are disconnected. It should read like this
"هذا المتجر الإلكتروني مغلق حاليا"
Hi hayco83,
Thank you for using our products!
This is by design to have the colorized titles have some letter spacing. This is the same in RTL and non RTL.
You can remove the spacing by modifying the rtl css styles of the theme.
Themes/Playground/Content/CSS/styles.rtl.css
.page-title h1 > span {
margin-left: 3px;
margin-right: 0;
}
remove the
margin-left: 3px; line.
Hope this helps!
Thanks