php - Ckeditor shows extra space at the beginning and end of the p tags -


i using ckeditor small web project, when edit content or create new content, automatically add white space after opening of p tag , text, when remove space , save content works when edit again, add space again, how remove it. think space between opening of p tag , text should not matter, shows spaces while retrieve content database , mess design. how solve this?

here image trying say:

enter image description here

i think it's setting: oldish resource, think still applies, depending on version using probably:

there seem settings adding breaks , indents (your problem guess) opening p tag:

this.dataprocessor.writer.setrules( 'p',                     {                         indent : false,                         breakbeforeopen : true,                         breakafteropen : false,                         breakbeforeclose : false,                         breakafterclose : true                     }); 

source : http://cksource.com/forums/viewtopic.php?t=18067 (but there quite other mentions of problem found on google)


Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -