Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

making ckeditor django responsive

CKEDITOR_CONFIGS = {
    'default': {
        'width': '100%'
    },
}
Comment

making ckeditor django responsive

# your_app/settings.py
CKEDITOR_CONFIGS = {
    'default': {
        'toolbar': 'Custom',
        'toolbar_Custom': [
            ['Bold', 'Italic', 'Underline'],
            ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'],
            ['Link', 'Unlink'],
            ['RemoveFormat', 'Source']
        ],
        'width': '100%'
    },
}
Comment

making ckeditor django responsive

/* main.css */
.django-ckeditor-widget {
  width: 100%;
}
Comment

PREVIOUS NEXT
Code Example
Python :: Group by a column, count sum of other columns 
Python :: permission denied when converting dataframe to csv 
Python :: python function with infinite parameters 
Python :: ajouter element liste python 
Python :: how to convert a datatype to another 
Python :: How can you hide a tkinter window 
Python :: free download django app for windows 10 
Python :: how to move the last column to the first column in pandas 
Python :: appending items to a tuple python 
Python :: sphinx autodoc command 
Python :: wap in python to check a number is odd or even 
Python :: split string python 
Python :: binary to decimal in python without inbuilt function 
Python :: python palindrome check 
Python :: number of elements in the array numpy 
Python :: rename all columns 
Python :: remove empty string from list python single line 
Python :: shuffle text lines python 
Python :: flask socketio usage 
Python :: super title python 
Python :: python fill string with spaces to length 
Python :: convert python list to pyspark column 
Python :: delete element from matrix python 
Python :: python filter list with lambda 
Python :: nltk 
Python :: python queue not empty 
Python :: reply_photo bot telegram python 
Python :: dict to string 
Python :: sns.heatmap 
Python :: HTML template with Django email 
ADD CONTENT
Topic
Content
Source link
Name
3+8 =