Image Replacement with RTL

direction: ltr; fixes the problem for RTL languages, while preserving characters order.

by Ronny

HTML

<h2 class="news ir">חדשות</h2>
<h2 class="news no-indent ir">חדשות</h2>

CSS

.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

.news {background: url(http://www.uriorbach.co.il/wp-content/themes/uriorbach/images/title-news.png) right top no-repeat; width: 272px; height: 54px; margin-bottom: 1em;}

.no-indent {text-indent: 0;}