Artisteer verticlemenu2 editor content area issue

A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.

This thread is closed to new posts. You must sign in to post in the forums.
7/25/2011 8:27:14 AM
Gravatar
Total Posts 68

Artisteer verticlemenu2 editor content area issue

Hi Joe,

In 2.3.6.7 using IE9 I'm seeing an issue in the content area of the open source editors when using the artisteer verticlemenu2 skin. When you click within the content area you will see what appears to be a selection box. This does not happen with the RadEditor.

Also tried Firefox and Safari and no issue there so I only see it on IE9 and IE9 in compatibility mode. Able to repro on the demo site.

This is 2.3.6.7 with both patches SQL Full Trust

-Bill

7/25/2011 9:49:34 AM
Gravatar
Total Posts 18439

Re: Artisteer verticlemenu2 editor content area issue

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

You must sign in to post in the forums. This thread is closed to new posts.