0

enter image description here

Anyone faced this before? I have never. I installed Django 3.1 along with Python 3.9 and started facing this(see the image). Even when I scroll up, the top half stays there, its fixed, only the bottom half scrolls. I am using ckeditor for the body field in my app. Could that package be the reason?

1 Answers1

1

Ckeditor can cause problems with django when working with code snippets. It needs to be configured.

Ayse
  • 576
  • 4
  • 13
  • How do I fix it ? Any alternative to ckeditor ? I tried tinymce and found ckeditor much better. – Mihir Thakur Oct 16 '20 at 09:32
  • In Django, ckeditor and codesnippet can cause problems when used together. The following way can be followed to solve this situation: (settings.py) CKEDITOR_CONFIGS = { 'awesome_ckeditor': { 'toolbar': 'Basic', 'allowedContent':True, }, } – Ayse Oct 16 '20 at 11:32