I am trying to change a template direction from ltr into rtl. I added dir="rtl" code to and the divs but nothing changes
I also tried to do it in css by adding direction: rtl;
to body class and other classes but still not working!
{
direction: rtl;
}
and finally tried js code but also doesn't work
var children = document.children;
var i;
for (i = 0; i < children.length; i++) {
children[i].style.direction = "rtl";
}
How could I do this?