I installed D6 and changed the lang. to arabic (RTL), now it looks great but the breadcrumb is LTR. i tried all bundled themes but the same result, the strange thing is that no one raise the issue before.
anyway I solved it by override theme_breadcrumb, but this apply to RTL & LTR Lang. which is not correct but it's fine with me:

function chameleon_breadcrumb($breadcrumb) {
if (!empty($breadcrumb)) {
$breadcrumb = array_reverse($breadcrumb);
return '

';
}
}

Comments

Emad’s picture

Now I figured out why no one raise this issue before, becuase it works OK. the breadcrumb changed the direction magically with arabic text. no need for the script above.