 Altaf Hussain
|
i translate the english wedget to arabic they ignore the rtl like starting dot is showing at the end not on the start in arabic
|
 Altaf Hussain
|
i have one widget which i translate into arabic its show the starting do to the left side on the right side as you see in the picture
|
 Nicolas V.
WPML Supporter since 12/2021
Languages:
English (English )
French (Français )
Timezone:
America/Lima (GMT-05:00)
|
Hi Altaf,
WPML will allow you to translate the widget texts, but the RTL layout support comes from the theme/plugin displaying this widget on the frontend.
It can usually be fixed with some CSS rules. Add the following to your CSS:
:dir(rtl) .product form.cart .button.added:before,
:dir(rtl) .product-widget ul li:before {
right: -22px;
position: absolute;
}
:dir(rtl) .product-widget .widget ul li {
margin-left: 0;
margin-right: 22px;
}
|