Right To Left Language Support
Have you heard about RTL or LTR term, RTL means that Right to Left and LTR means Left to Right. Maybe from this article you will have an idea to modify your theme which use RTL language to support it.
Here is the LTR style:
Default theme style for all themes usually show and writes from left to the right, but what about some languages like Arabic, Hebrew and plenty of others go from right to the left? HTML provides a property for the html element named dir that indicates whether the page is LTR (left to right) or RTL (right to left). Just try to open your header.php, while most of the html tag is on this file for all themes, add RTL codes for the html tag.
<html dir="rtl">
The code above will show the site from right to the left, and when it support for a direction properly in CSS, add this codes at style.css or better put at custom.css for additional css code at the theme.
input {direction: rtl;}
Try this simple way to make languages plan from right to left, and get this example result below for the RTL direction below.
Set the direction property will make the page working for the standard HTML tags, but it can’t switch a CSS element with float: left to float: right or change an absolutely positioned layout. To make more complex layouts work, you will need a new style sheet. You can modifies the rest style from here for RTL direction to make it neater and look nicer.












