WEIRD -Edit Content box scroll bug?!
PermalinkAny ideas?
Instead of:
h1{
margin:10px 0;
}
it's safer to write it as:
#wrapper h1{
margin:10px 0;
}
In the menu bar over tiny MCE these links are floated left:
<li ccm-file-manager-field="rich-text-editor-image">
They aren't getting cleared, so this span
<span id="ccm-content-81-34_parent" class="mceEditor defaultSkin">
that contains the MCE table is being pushed to the end of the line of the <li>'s above.
Copy:
concrete/js/tiny_mce/themes/advanced/skins/default/ui.css
to:
js/tiny_mce/themes/advanced/skins/default/ui.css
Then open the ui.css from the new location in an editor. Add this declaration:
clear: both;
to line #19
It's the first line in the layout section and it should look like this:
.defaultSkin table.mceLayout {clear: both;border:0; border-left:1px solid #CCC; border-right:1px solid #CCC}
-Steve