Text in Editor goes out of bounds

This is an open forum for any mojoPortal topics that don't fall into the other categories.

This thread is closed to new posts. You must sign in to post in the forums.
10/14/2011 4:54:22 PM
Gravatar
Total Posts 383
Thanks Squire Dude

Text in Editor goes out of bounds

Hi,

I have an issue with the built in Editors... The content text goes off the right side of the edit area.  Doesn't matter which editor I select in the Site Setting page I get the same result.

How can I re-size ?????? to get the text to NOT go beyond the bounds of the text box?

10/16/2011 2:26:39 PM
Gravatar
Total Posts 18439

Re: Text in Editor goes out of bounds

This problem is caused because of some wierd css that Artisteer makes where they set a very wide min-width on the body.

In the included skins we have solved it by adding something like this in the style-artisteer-overrides.css

body.wysiwygeditor
{
background-color: white;
background-image: none;
font-size: 12px;
min-width: 100px;
}

body.wysiwygeditor  p
{
font-family: Arial, Helvetica, Sans-Serif;
  font-size: 14px;
  margin: 12px 0;

}

Hope that helps,

Joe

10/17/2011 10:21:54 AM
Gravatar
Total Posts 383
Thanks Squire Dude

Re: Text in Editor goes out of bounds

Hi Joe A,

Thanks for the tip.  I looked in the CSS and found the lies you suggest already in the file!

Got any other suggestions?

10/18/2011 1:58:47 PM
Gravatar
Total Posts 51

Re: Text in Editor goes out of bounds

Hi Phill,

You can try this. Find body selector in style.css and see if there is for example "min-width: 1000px". Remove this line can solve your problem.

Hope that helps,
Erhan

10/18/2011 4:29:13 PM
Gravatar
Total Posts 383
Thanks Squire Dude

Re: Text in Editor goes out of bounds

Hi Erhan,

Thanks for the tip... on my style.css it was min-width: 950px;  I removed it and it seems to have resolved the issues.

Thanks

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