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?
Asked
Active
Viewed 166 times
0
-
Can you check the console? Maybe there are some javascript errors – Jahongir Rahmonov Oct 16 '20 at 08:07
-
No. Nothing in the console. Its clean. Also I tried removing the ckeditor, but the problem persists. – Mihir Thakur Oct 16 '20 at 08:11
-
https://stackoverflow.com/a/63492729/12806577 Here. I found a link to a solution which worked for me. – Mihir Thakur Oct 16 '20 at 09:55
1 Answers
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