Sunday 27 August 2006 1:45:21 am
Hiya Claudia Thank you so, you put me in the right track. I did add text-align: right !important
to my editor.css body tag as follows: body
{
font-family: Arial, Helvetica, sans-serif;
font-size: 0.8em;
text-align:right !important
}
The text aligned right-to-light nicely but my coursers were reversed so I added direction:rtl !important and removed the text-align tag and eveything was perfect text and coursers were perfectly right-aligned. body
{
font-family: Arial, Helvetica, sans-serif;
font-size: 0.8em;
direction:rtl !important
}
|