Hi,
Ive just installed the 1.5 version and set
config.UseBROnCarriageReturn = true ;
Now the Problem (or bug ??)
When trying to center some text in just one line inside left formatted text, I cant do it with the buttons ?!?!
It would be nice if I could insert <p> by pressing ALT+Enter
I hope u unterstand, what I mean, and I hope you can fix this problem ?
Ive just installed the 1.5 version and set
config.UseBROnCarriageReturn = true ;
Now the Problem (or bug ??)
When trying to center some text in just one line inside left formatted text, I cant do it with the buttons ?!?!
It would be nice if I could insert <p> by pressing ALT+Enter
I hope u unterstand, what I mean, and I hope you can fix this problem ?
RE: <br> & <p>
To avoid the problem, set
config.UseBROnCarriageReturn = false;
to use paragraphs. To simulate a <br> in this situation, make a style for the editor and html output of the editor content with:
body, p { margin: 0px 0px 0px .0001pt }
Then all Paragraphs in your html code have no more extra line feed. The ".0001pt" is used for netscape 4 compatibility, because otherwise some versions of ns4 are hiding the last line of the text.
O.K., this isn't a very elegant solutions, but it may solve your problem.