Is it possible to resize the editor bubble edit modal?

Is it possible to resize the editor bubble edit modal?

milled00milled00 Posts: 14Questions: 4Answers: 1

Hi,
I'm using the editor bubble method to allow easy editing of fields - some of which are text areas - via the quill wysiwyg editor.
The default size of the edit modal is very small. Is there any way of resizing the modal?
Thanks in advance.
Regards,
Dave

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,853Questions: 1Answers: 10,134 Site admin
    Answer ✓

    There isn't a way for the user to do it with click and drag, but you can set the size using CSS:

    div.DTE_Bubble_Liner {
      width: 600px;
      height: 400px;
    }
    

    Allan

  • milled00milled00 Posts: 14Questions: 4Answers: 1

    Thanks Allan

This discussion has been closed.