This is strange
I implemented custom styles, they all show up in the style list, and only them (the predefined/demo ones are gone, ok) but for one predefined style, the 'Red Title' (an inline-styled h3).
And this style isn't even listed in the predefined fckstyles.xml...
So, do you have an idea about where this *very resilient* style comes from?
Hardcoded somewhere? And about how to get rid of it?
Btw... I hadn't use FCKeditor for quite some time (so please be understanding ) and I'm amazed by all the improvements. It rocks!!
Tue, 09/30/2008 - 12:19
#1
Re: No way to get rid of the 'Red Title' style?
'Red Title' : { Element : 'h3', Styles : { 'color' : 'Red' } }
from fckconfig.js
Styles can be listed there in addition to fckstyles.xml
Re: No way to get rid of the 'Red Title' style?
But there is no 'Red Title' in either fckstyles.xml or in fckconfig.js.
Is there any other place the persistent 'red title' style might be hiding?
Thanks,
doug
Re: No way to get rid of the 'Red Title' style?
Thanks,
doug
Re: No way to get rid of the 'Red Title' style?
Re: No way to get rid of the 'Red Title' style?
FCKConfig.CustomStyles =
{
'Red Title' : { Element : 'h3', Styles : { 'color' : 'Red' } }
};
...to this:
FCKConfig.CustomStyles = {}
...and Red Title will be gone for good!
- jason
Re: No way to get rid of the 'Red Title' style?
FCKConfig.CustomStyles =
{
'Red Title' : { Element : 'h3', Styles : { 'color' : 'Red' } }
};
Laura Centellas