Hi there,
I'm on cmsms 1.1 and have 1.0.3 of fckeditorx. When I type anything to the fckeditor htmlarea I expreience, that content gets rounded by and tags automatically. Is there a way to make fckeditorx _not_ to do this?
Thanks,
Balint
fckeditorx paragraph autoformat question
Re: fckeditorx paragraph autoformat question
You could try putting
into
FCKeditorXcfg.js.php
in the modules/fckeditorX folder
at about line 33 after the ?> php end tag
You will have to clear cache and reload editing page if it is open.
Code: Select all
FCKConfig.EnterMode = 'br' ;
FCKConfig.ShiftEnterMode = 'br' ; FCKeditorXcfg.js.php
in the modules/fckeditorX folder
at about line 33 after the ?> php end tag
You will have to clear cache and reload editing page if it is open.
Re: fckeditorx paragraph autoformat question
Thanks for the idea, I'll try that.
However fckeditor puts surrounding paragraph tags even if the content is only one line long, without Enters either with or without shift.
However fckeditor puts surrounding paragraph tags even if the content is only one line long, without Enters either with or without shift.
Re: fckeditorx paragraph autoformat question
Yes WYSIWYG editors demand that you put in a P, BR, or DIV tag.
However if you start a pristine page and have BR as the 'enter' default there should be no paragraph tags just line-break tags.
Changing the default will not retrospectively clear all P tags.
However if you start a pristine page and have BR as the 'enter' default there should be no paragraph tags just line-break tags.
Changing the default will not retrospectively clear all P tags.
Last edited by chrisl on Thu Aug 30, 2007 7:37 pm, edited 1 time in total.

