Hi folks,
i want the fckeditor to make a simple <br /> instead of a <p> when i press enter. how can i change this?
thanks in advance
i want the fckeditor to make a simple <br /> instead of a <p> when i press enter. how can i change this?
thanks in advance
RE: <br /> instead of <p>
RE: <br /> instead of <p>
in Netscape7 this working corectly.
RE: <br /> instead of <p>
example :
p
{
padding: 1px 1px 1px 1px;
padding-top: 0px;
padding-bottom: 0px;
margin: 0px 0px 0px 0px;
}
For me, it allows to have no difference between Enter and shift+Enter.
Regards
RE: <br /> instead of <p>
You should not use <br /> instead of <p> , but if you really need a <br /> somewhere you can use Shift+Enter ..
PS : There was a setting in the fckconfig.js that made it possible to make the default line carrier to <br /> but I think this is not availible in 2.0 RC1.
You may also set <p> to having no space before and after in css , this way the <p> will behave about the same way as a <br /> would.
RE: <br /> instead of <p>
any suggestions?
RE: <br /> instead of <p>
FCKConfig.UseBROnCarriageReturn = true ;
in fckconfig.js
RE: <br /> instead of <p>
RE: <br /> instead of <p>
Sure you can force a <br/> when you hit enter. Two enters equals 2 BRs and it looks like a new paragraph which is fine until you want to use a numbered or bulleted list - and it wont work, because all you have is one big paragraph broken up with BRs.
Leave it as is. If you want a new line, simply use "shift+enter" just like you have to do in any self respecting editor.