Remove this from your style sheet (highlighted):
Code:
body {
margin: 0;
padding:0;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 1.5em;
color: #000;
width: 100%;
display: table;
background: #000d0d;
direction: rtl;
}
But then your text will be messed up, so add this (highlighted) to the stylesheet right after that, so you will have:
Code:
body {
margin: 0;
padding:0;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 1.5em;
color: #000;
width: 100%;
display: table;
background: #000d0d;
}
body * {
direction: rtl;
}
This will fix IE 8 and preserve your rtl text.
Bookmarks