'got a vertical scroll bar after adding ckeditor in Django

before adding ckeditor my webpage was working fine but when I add ckeditor to my textarea field I got a vertical scroll bar. my problem is I want to remove that scroll bar which I have got after adding ckeditor page pic after addition ckeditor

template code is

<div class="container">

<form method="POST">
    <div class="form-group">
    {% csrf_token %}
    <fieldset class="form-group">
        <legend class="border-bottom mb-4" style="font-weight: 700;">Create Notes</legend>
       
    </fieldset>
     {{form.media}}
    {{form|crispy}}
    <div class="form-group">
        <button href="" class="btn btn-primary" type="submit">
            Create
        </button>
    </div>
</div>
</form>

model.py

 title=models.CharField(max_length=200)

description = RichTextField(blank=True,null=True)

my second problem is I want to remove image ,table and anchor options from editor please help me to figure it out. thanks in advance



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source