I just converted from TinyMCE thinking this would be better and easier but so far I can't believe am not using TinyMCE.
I am having several problems, but am only going to list two of them right now.
I am using CKEditor instead of textareas and then insert the content into my DB but for some reason CKEditor formats it like this
Which is just retarded, seriously why does it make every new line a new paragraph? And why those it add linebreaks at the start and at the end, obviously I would like it like this,
I've looked through every single file for some kind of editing and searched around the web for any help but yet to find anything. That's one problem.
The other problem is that I can't resize the textarea, if I change the value of cols and rows, nothing happens, it stays the same.
I am having several problems, but am only going to list two of them right now.
I am using CKEditor instead of textareas and then insert the content into my DB but for some reason CKEditor formats it like this
<br /> <p>Line One<p/> <p>Line Two<p/> <br />
Which is just retarded, seriously why does it make every new line a new paragraph? And why those it add linebreaks at the start and at the end, obviously I would like it like this,
<p> Line One<br /> Line Two </p>
I've looked through every single file for some kind of editing and searched around the web for any help but yet to find anything. That's one problem.
The other problem is that I can't resize the textarea, if I change the value of cols and rows, nothing happens, it stays the same.

Re: Paragraph and line breaks
Re: Paragraph and line breaks
Which converts to
So it is CKEdit.
Re: Paragraph and line breaks
CKEditor generates what you see in source mode, afterwards any change to that code isn't done by CKEditor so now you have to find out what code is doing those changes.
Try this: put a textarea instead of CKEditor and use that same source code there.
Re: Paragraph and line breaks
Re: Paragraph and line breaks
Guess I'll go back to TinyMCE
Re: Paragraph and line breaks
viewtopic.php?f=6&t=18067
Re: Paragraph and line breaks
here