I'm trying to add some addition FontFormat to the toolbar like <strong> and <h3>.
I've try putting this in the fckconfig.js:
FCKConfig.FontFormat = 'Paragraph;Heading 1(H1);Heading 2(H2);Heading 3(H3)' ;
Where else do i need to modifty?
Another Question:
Under the same file I've created an entry for my own toolbar
FCKConfig.ToolbarSets["MyToolbar"];
This works under IE when i declare this:
var oFCKeditor = new FCKeditor( 'FCKeditor1',"600","400","MyToolbar") ;
But mozilla firefox says MyToolbar doesn't exist???
I've try putting this in the fckconfig.js:
FCKConfig.FontFormat = 'Paragraph;Heading 1(H1);Heading 2(H2);Heading 3(H3)' ;
Where else do i need to modifty?
Another Question:
Under the same file I've created an entry for my own toolbar
FCKConfig.ToolbarSets["MyToolbar"];
This works under IE when i declare this:
var oFCKeditor = new FCKeditor( 'FCKeditor1',"600","400","MyToolbar") ;
But mozilla firefox says MyToolbar doesn't exist???
RE: Configuring toolbar menu
FCKToolbarItems['FontFormat'] = new FCKToolbarCombo( 'FontFormat', FCKLang['FontFormat'], '<P>;<DIV>;<H1>;<H2>', 'Normal (P);Normal (DIV);Heading 1;Heading 2' ) ;
to
FCKToolbarItems['FontFormat'] = new FCKToolbarCombo( 'FontFormat', FCKLang['FontFormat'], '<H4>;<H6>', 'Rubrik 1;Rubrik 2' ) ;
as I only wanted to use those two headings.
But when I clear my cache and reload the editor the old values are still there. Are they hard coded somewhere else?
RE: Configuring toolbar menu
* = ie or gecko.
Good Luck!