Re: Is it easy for RTL?
Well I learned something new (well actually lots of new stuff) at the
SF WordCamp conference this weekend which has to do with right to left languages and themes. WordPress supports right to left in themes and all you need to do is add a new css file called "rtl.css" in the classipress theme folder.
That file will take precedence over the default ClassiPress css so anything you add in there "should" make it work. I haven't actually tested it yet though. Now you'll need to know and understand css before you can move on and an example of some elements that need to be included are:
Code:
text-align:right;
direction:rtl;
If you look in the default WordPress theme folder you'll find an rtl.css file. If you are inclined to learn or already know how to write your own css, you should take a look at it.
I plan on adding this feature in the future but for now, you'll have to add it on your own. If you have any luck I'd love to hear about it.