I wouldnt suggest editing the FCKEditor's CSS. If you do, then linefeed appears to be like a <br> (single line). On front end however, it shows as double lines feed (typical <p>).
What I did was leave the FCKEditor's CSS as is, and edit the front end CSS with:
p { margin-top: 0px; margin-bottom: 0px; }
So all editor linefeeds looks consistent with that on front end. I hope that helps
RE: How to force to jump one line and not two?
RE: How to force to jump one line and not two?
I can't find where in the css file to change this. Could you be a little more specific?
thx.
RE: How to force to jump one line and not two
<BR> instead of <P> which is a better fix for this problem...
FCKConfig.UseBROnCarriageReturn = true ;
in fckconfig.js
RE: How to force to jump one line and not two
only seems to work for IE and not for Gecko.
I think this is due to the way the gecko editable area works ... perhaps Fred could comment on this one ?
RE: How to force to jump one line and not two
RE: How to force to jump one line and not two?
Add a style line for the <p> tag. Set margin = 0. This should override the standard behavior.
RE: How to force to jump one line and not two?
What I did was leave the FCKEditor's CSS as is, and edit the front end CSS with:
p {
margin-top: 0px;
margin-bottom: 0px;
}
So all editor linefeeds looks consistent with that on front end. I hope that helps
tim
.
.....