Where do you specify custom formats. I guess it is in the custom configurations file, but what are the properties?
i.e. are they like the "styles" in version 1 where they are defined in an external style sheet?
i.e. are they like the "styles" in version 1 where they are defined in an external style sheet?
RE: Custom Formats
RE: Custom Formats
/js/fck_config.js
//##
//## Style Names
//##
config.StyleNames = ';Main Header;Blue Title;Centered Title' ;
config.StyleValues = ';MainHeader;BlueTitle;CenteredTitle' ;
2.0b, for now, just have no ability to use Styles.
RE: Custom Formats
I've been using the styles in version 1.6, but the classes are placed inside font tags, this is bad XHTML 1.0, and wrong for XHTML 1.1. If you can put a font tag round the text and add a class, why can't you do this with a <div> (or <span>)??
Maybe in v2.0c
RE: Custom Formats
You can modify fck_actions.js to use span or div instead of font. I think the reason why it's using font is because the currently used 'remove format' won't touch any other tags. You'd have to turn the remove format into a custom function.
anyway check out this post... http://sourceforge.net/forum/forum.php? ... _id=257180 for instructions.