0

I have these annoying tooltips in 2amigos CKEditor that obstruct and hide the content of a text area. How can I disable them? I have tried to use

     config.language="en-gb";
      config.title="Put your title here"; 

and

    CKEDITOR.config.title = false;

as shown in the links below but it seems that was a long time ago and those options no longer exist Disable CKEditor annoying tooltip?

Gus
  • 4,437
  • 2
  • 24
  • 27
KMarto
  • 300
  • 2
  • 23

1 Answers1

0

According to this you can easily remove the tooltips via CSS:

.ck.ck-button .ck.ck-tooltip {
    display: none;
}

I've just tried it on https://ckeditor.com/ckeditor-5/ and it seems to work.

robsch
  • 9,358
  • 9
  • 63
  • 104