TinyMCE Field Editor on the tinyMCE Container

This may be a dumb question, but how to add a marker at the bottom of the tinyMCE editor. I have an edge at the bottom of the text box that I am targeting with tinyMCE, but I assume it is being replaced by the editor and my style in the text box is controversial. I opened the css files for the extended theme, but I can’t find that the tag needs margin added to it.

The answer to this is probably looking in my face. But this is only one of those days of programming. I can’t burn more hours trying to figure it out, I’m moving on, but if someone has an understanding that would hit my ass.

thanks,

-L

+4
source share
1 answer

I just applied the following to a β€œfull-featured example” on the TinyMCE website via Firebug, it worked beautifully. The textarea element is indeed replaced, although you can also add margin to the bottom of this because when TinyMCE has not yet replaced the element to avoid layout layout.

 table.mceLayout { margin-bottom:100px; } 
+2
source

Source: https://habr.com/ru/post/1395687/


All Articles