I have FCKeditor installed on my Drupal website, and while it all works correctly, I do not like the theme on it. I know (because I've seen on the FCKeditor website) that it comes with a couple different themes (I was specifically interested in the Office 2003 one). How would I switch to that theme instead of just the default one?

Comments

peacho’s picture

Anyone?

wwalc’s picture

I know this answer comes much too late, but in 5.x-1.2 you have to add this line to fckeditor.config.js:
FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/default/' ;
("default" is a name of default theme)

In 5.x-2.x (complete, waiting for bug reports to release officially), you can easily set it in Administration section (what's more, even each user can select preferred theme if you give him such privilege)

Wiktor Walc
http://www.fckeditor.net
"Support Open Source Software"

Wiktor Walc
http://ckeditor.com
"Support Open Source Software"

peacho’s picture

Thanks, that sounds great.