Hi Bill,
This is a strange one, the cause of it is in styleartisteer-overrides.css, where we added this:
body.wysiwygeditor p
{
max-width:93%;
}
to solve a different issue on this thread. But I did not notice the side effect in IE and still don't understand how that causes it but removing it does solve it.
So then we need a different solution for the other thread linked above, after more digging I determined it is because in the style.css exported from Artisteer 3 they set the min-width on the body to 1000px. So a way to fix it in styleartisteer-overrides.css is to set the min width differently in the editor like this:
body.wysiwygeditor
{
min-width: 100px;
}
Hope that helps, and thanks for pointing it out, I'll update the artisteer 3 skins we ship for the next release.
Best,
Joe