Hey people
Im having some issues removing the white border around the (whole) editor. I looked through possibly all documents for where this could be chanced, but no luck. Any ideas?
Thanks in advance
Im having some issues removing the white border around the (whole) editor. I looked through possibly all documents for where this could be chanced, but no luck. Any ideas?
Thanks in advance

Re: Removing the outer border
change padding in body:
body { padding: 1px; margin: 0; background-color: #ffffff; }is that what you were looking for?
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Removing the outer border
no that was not what he were looking for!!
and i have the same problam as well
we need to change the outer border around the (whole) editor
wich is in the iframe border not inside the editor area
insted of this code in the fckeditor ifrme:
frameborder="no"
that is not fit to the "W3C" org
we loking if there a property to control this
like to make no border in the fckeditor ifrme:
frameborder="0"
or to change his color and with
thanks a lot for any halp
cheinan
Re: Removing the outer border
Re: Removing the outer border
the problem is to gain control over fckeditor ifrme - wich is
created only on run time in asp.net pages that we deal with.
developers cold not write for it directly this lines of html code:
scrolling="no" frameborder="0px" marginheight="0px" marginwidth="0px"
there for in asp.net we looking for some way on server side
we need to find some fckeditor property or fckeditor css style property or fckeditor javascript property
that we cen set on server side wich will control the fckeditor ifrme border
on user side
again big thanks for any help ?
Re: Removing the outer border
in the css file:
fck_editor.css
wich is in:
fckeditor/editor/skins/default/fck_editor.css
jast need to play and set thuse values:
body
{
padding: 1px;
margin: 0;
background-color: #ffffff;
}
#xEditingArea
{
border: #696969 1px solid;
}
very simple
hops it helps any one...
Re: Removing the outer border