Remove the line 'Red Title' : { Element : 'h3', Styles : { 'color' : 'Red' } } from fckconfig.js Styles can be listed there in addition to fckstyles.xml
I am having the exact same problem the original poster had. My modifications of fckstyles.xml work fine except for the persistent 'red title' style, which won't go away.
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?
Not sure if you have found the solution yet. However, in the config file you will find (around line 201) a FCKConfig.CustomStyles setting with the 'Red Title' setting. If you comment out this entire setting, you should no longer see that style in your drop down.
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