Just started using TinyMCE in the MVC razor project and is very impressed with the HTML editing.
When I went to use it in full screen mode (using the following options)
$('#ApplicationHtmlTemplate').tinymce({
theme: "modern",
plugins: "code,pagebreak,fullpage,table,fullscreen,paste,spellchecker",
toolbar1: "undo | redo | copy | paste | searchreplace | spellchecker | table | pagebreak | fullpage | fullscreen"
})
I noticed that it appears under the bootstrap header line:

What is the “right” way to make TinyMCE editing appear either under or on top of the Bootstrap navigation bar? Preferably between header and footer, but fullscreen.
I tried to set the top and / or margins of the class mce-fullscreenusing the style below, but this a) seems to be hacked and b) does not work, since the height is a full screen, so the scrollbars disappear from the bottom.
div.mce-fullscreen {
top: 55px;
}