4

I'm trying to add new skin in django-ckeditor but its doesnt work and it shows a blank screen in django-admin

I have installed the kama skin and extracted in static\ckeditor\ckeditor\skins\kama but doesnt seem to work.

Below im showing my ckeditor config options:

CKEDITOR_CONFIGS = {
    'default': {
        'toolbar': None,
        'toolbarCanCollapse': True,
        'skin': 'kama',
        'uiColor': '#b7d6ec',
    },

}

Can someone please resolve this issue?I m very new to django ckeditor and its config and building my first website. Thanks in advance !

Jigar Panchal
  • 93
  • 3
  • 12

2 Answers2

1

I know it's a bit late but I managed to get my Office2013 skin working by mimicking CKEditor directory structure.

ckeditor skin dir

Ardent Coder
  • 3,777
  • 9
  • 27
  • 53
0
django-admin collectstatic -c

This did the trick for me. It replaced an old bundle-aaaaaaaa.js file by another file that was found when I reloaded my page.

(And then I discovered that my problem was that I had moono-lisa skin inside my static/djangocms_ckeditor/ckeditor/skins folder, but moono in my settings)

sodimel
  • 864
  • 2
  • 11
  • 24