I saw that in order that the template will work as RTL in need to define rtl in joomla. but where do I define it ? does the language file suppose to do the work ? where do I define it in the language file?
I need to know this before I'll buy the club membership
Currently we have Meridian template coded to support RTL (Right to Left) format.
We do not have all templates specifically coded for the RTL (right to left) format. However, many of our members convert our templates to RTL to suit their needs. You will be able to find help on the forums from both other members who have converted their sites ( you may wish to search for these conversion threads for ideas ); and help from our forum moderators.
Generally, the procedure follows the below points:-
1. Add to the template_css.css or template.css ( depending on what appears in the template package) :-
.wrapper { direction: rtl; }
2. Find references to padding-left/right; margin-left/right; left/right; float: left/right; and switch them around so for example:-
padding-right: 10px;
Would become the following:=-
padding-left: 10px;
Note that this doesn't apply for all elements so be ensure to go through the conversion gradually.
3. If the background image is in the wrong place, use the following CSS value to switch its position:-