By rusdvl on
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
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
Anyone!?
Anyone!?? Would appreciate any advice...
Drupal 7
For Googlers:
Add this to your template.php
function THEMENAME_preprocess_html(&$variables) {
global $language;
$variables['classes_array'][] = $language->dir;
}