hi! i have a question, i have multi language site and i need some way to change the direction when user language is hebrew from right to left - left to right, i try this
foreach($languages as $language) {
if($language->title == "hebrew"){
echo 'style="direction:RTL"';
}
i read a lot of post but i dind find some solution.
thank you!