I have been utilizing the tinyMCE editor plugin, which transforms textareas into iframes and displays a toolbar at the top of the content. It has been functioning flawlessly.
However, there are times when there are videos placed above the content. In such cases, when I click on the textarea to edit, the video player above the content obscures or hides the toolbar behind it.
Is there a way to adjust the z-index of the toolbar? (Preferably) Or should I consider relocating the toolbar?
Below is the code snippet I am using:
tinyMCE.init({
mode : "textareas",
editor_selector : "combo123",
theme: "advanced",
plugins : "save, paste, autoresize, asciimath, asciisvg",
theme_advanced_styles: "Foo=foo, Bar=bar",
content_css : "/css/tiny_mce.css"
});