Here's another tip:
Instead of using float:right and float:left inside many classes. Remove all of those and create two new classes
.right{float:right;}
.left{float:left;}
Now in the RTL version, just use ur CSS overriding mechanism to swap them so that .right floats left and vice versa!
.right{float:left;}
.left{float:right;}
Here's another tip:
Here's another tip:
Instead of using float:right and float:left inside many classes. Remove all of those and create two new classes
.right{float:right;}
.left{float:left;}
Now in the RTL version, just use ur CSS overriding mechanism to swap them so that .right floats left and vice versa!
.right{float:left;}
.left{float:right;}
You don't need to change your code else where