making ckeditor django responsive

Solutions on MaxInterview for making ckeditor django responsive by the best coders in the world

showing results for - "making ckeditor django responsive"
Lara
16 Nov 2020
1CKEDITOR_CONFIGS = {
2    'default': {
3        'width': '100%'
4    },
5}
Emily
25 May 2018
1# your_app/settings.py
2CKEDITOR_CONFIGS = {
3    'default': {
4        'toolbar': 'Custom',
5        'toolbar_Custom': [
6            ['Bold', 'Italic', 'Underline'],
7            ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'],
8            ['Link', 'Unlink'],
9            ['RemoveFormat', 'Source']
10        ],
11        'width': '100%'
12    },
13}
Max
27 Mar 2020
1/* main.css */
2.django-ckeditor-widget {
3  width: 100%;
4}