Hello,
How can I set the direction of the page (dir=rtl or dir=ltr)?
As I'm using Hebrew text, I need the page to be right to left and not left to right.
Thanks
How can I set the direction of the page (dir=rtl or dir=ltr)?
As I'm using Hebrew text, I need the page to be right to left and not left to right.
Thanks
RE: Direction
Another question:
How can I set a background color and/or background image?
I mean that when the page loads, I want it to have a red background or an image.
RE: Direction
RE: Direction
I'm running a function onload that setts the background color and image. However, after the editor finishe loading, there is white background.
My function:
function setEditorAreaBG()
{
instanceName='Html';
daColor='<%=bgcolor%>';
daPic='<%=bgpic%>';
editor_frame = document.getElementById(instanceName+'___Frame');
if (editor_frame!=null)
{
editor_source = editor_frame.contentWindow.document.getElementById('eEditorArea');
if (editor_source!=null)
{
editor_source.contentWindow.document.body.style.backgroundColor=daColor;
if (daPic.value != '#') editor_source.contentWindow.document.body.style.backgroundImage='url('+daPic+')';
return true;
}
else
{
return false;
}
}
else
{
return false;
}
}
RE: Direction
would be nice if persons solutions were posted when they found the fix for their problems..
RE: Direction
FCKConfig.ContentLangDirection = 'rtl' ;