Hello.
I need to use my CSS in Editor.
This css is names "style.css" and located in another folder that fckeditor structure, like tis: "../../css/style.css";
In the editor's integration page, I do so:
// For Editor area, ok
$oFCKeditor->Config['EditorAreaCSS'] = "../../css/style.css";
// For Editor toolbar/menu, don't work
$oFCKeditor->Config['ToolbarComboPreviewCSS'] = "../../css/style.css";;
in the menu, styles don't appear correctly, styles "Red Title, Marker green, ..." appears.
Can somebody help me, where is something wrong?
I need to use my CSS in Editor.
This css is names "style.css" and located in another folder that fckeditor structure, like tis: "../../css/style.css";
In the editor's integration page, I do so:
// For Editor area, ok
$oFCKeditor->Config['EditorAreaCSS'] = "../../css/style.css";
// For Editor toolbar/menu, don't work
$oFCKeditor->Config['ToolbarComboPreviewCSS'] = "../../css/style.css";;
in the menu, styles don't appear correctly, styles "Red Title, Marker green, ..." appears.
Can somebody help me, where is something wrong?
Re: Change CSS in Editor and style menu (php)
Example:
c:\xampp\htdocs\mywebsite\css\style.css
c:\xampp\htdocs\mywebsite\fckeditor
Now you can change the css :
FCKConfig.EditorAreaCSS = "../../css/style.css" ;
After making these changes clear cache.
Re: Change CSS in Editor and style menu (php)
Thank for answer!
But this work only for editor area. Where css can be set to be used in the menu (style drop-down combo)?
Pascal