Hi all FCK Editor pro's
I have a question and it is if you want to hit enter but want a <BR> character to appear in the final Html code. I need to make a robreak but I don't want a new paragraph ... how shall I do this in the FCK Editor without having to swap to Html to do it manually?
/Johan
http://www.itansvar.se
Wed, 04/16/2008 - 17:39
#1

Re: How to insert a <BR> without swap to Html to manually
Re: How to insert a <BR> without swap to Html to manually
FCKConfig.EnterMode = 'p' ; // p | div | br
FCKConfig.ShiftEnterMode = 'br' ; // p | div | br
to
FCKConfig.EnterMode = 'br' ; // p | div | br
FCKConfig.ShiftEnterMode = 'p' ; // p | div | br