Hi,

How do I add a 'rtl' class to the body tag only when its a rtl language? So that when i switch to a rtl language i want the body tag to display a 'rtl' class (this is for IE css issues)

Thanks

Comments

rusdvl’s picture

Anyone!?? Would appreciate any advice...

husinluck’s picture

For Googlers:

Add this to your template.php

function THEMENAME_preprocess_html(&$variables) {
global $language;
$variables['classes_array'][] = $language->dir;
}