Editor window issue in artisteer-30* skins

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
6/21/2011 7:07:02 PM
Gravatar
Total Posts 1203
Proud member of the mojoPortal team

Help support mojoPortal!
Add-on modules

Editor window issue in artisteer-30* skins

Hi Joe, we are re-exporting our Artisteer 3.0 skins and overlaying on the latest versions of artisteer-30headermenu and artisteer-30verticalmenu1. We've found that for these skins the text wrap position in the editor is beyond the right edge of the displayed editor window, so some of the text is cut off. You can see this on the demo site by selecting one of these skins and editing the main "welcome" HTML text. The "Please do not remove..." paragraph and the one below are cut off in the editor window.

We found we can tweak to add a horizontal scroll bar to the editor window, but that's not a great solution. Ideally we'd like all text to wrap within the window without any scroll bars. Any help would be greatly appreciated as always!

Thanks,

Jamie

6/23/2011 12:31:20 PM
Gravatar
Total Posts 18439

Re: Editor window issue in artisteer-30* skins

Hi Jamie,

I was able to see this problem on my local machine using the artisteer-30verticalmenu1 skin.

For this skin I was able to solve it in style-artisteer-oveerides.css like this:

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

note that the only part I added was the width:93%; the rest of it was already in there.

Also note that the editor is resizeable by dragging the bottom right corner so it can be solved that way as well, and also if you have the cursor in there you can right arrow and as the cursor goes over to the right it brings the content into view.

Must be something funky with the artisteer 3 css to make it overflow like that, not easy to figure out exactly what css is causing it in the context of the editor.

Best,

Joe

6/23/2011 6:07:22 PM
Gravatar
Total Posts 1203
Proud member of the mojoPortal team

Help support mojoPortal!
Add-on modules

Re: Editor window issue in artisteer-30* skins

Thanks Joe, we'll give that a try.

7/25/2011 9:51:55 AM
Gravatar
Total Posts 18439

Re: Editor window issue in artisteer-30* skins

Hey Jamie,

Update, this fix seems to cause another problem as mentioned on this thread, so a better solution is:

body.wysiwygeditor
{
min-width: 100px;
}

which overrides the min-width:1000px; set in the main style.css exported from Artisteer 3, which is the cause of the problem.

Best,

Joe

7/25/2011 12:28:37 PM
Gravatar
Total Posts 1203
Proud member of the mojoPortal team

Help support mojoPortal!
Add-on modules

Re: Editor window issue in artisteer-30* skins

Hi Joe, we'd still been struggling with this problem, so this morning I sent your fix info over to our webmaster. I'll just cut and paste her response here:

YIPPEEEEEEEEEEE!  That did the trick!  Please make sure to give a big THANK YOU to Joe for this fix!!!!!!!!!!

laugh

Jamie

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