editors and google chrome

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.
3/24/2011 10:37:40 AM
Gravatar
Total Posts 43

editors and google chrome

Hi m8s,

A weird stuff is happening whit my mojoportal...every browser i have shows the editors whit a white background except for google chrome...it keeps getting the "body" color and putting it on editor...

Already did the separation bettwen body and .pagebody...cleaned chache...cleaned the service...restarted PC :p

but nothing can change it...any way of doing this?

 

3/24/2011 10:55:59 AM
Gravatar
Total Posts 43

Re: editors and google chrome

i needed something like this solution :P

http://drupal.org/node/947202

they can change the body of the editor...i'm searching but can't find something similar

3/24/2011 11:15:09 AM
Gravatar
Total Posts 43

Re: editors and google chrome

another thing i'm having trouble is the image selection...

when i try to select a image already in the server the editor never recognizes it and it makes a <img> on source code but doesn't show a thing :s

3/24/2011 11:40:49 AM
Gravatar
Total Posts 1203
Proud member of the mojoPortal team

Help support mojoPortal!
Add-on modules

Re: editors and google chrome

Since this seems to be a CKEditor and Google Chrome specific issue, you might have better luck getting answers by reporting your Chrome issues on the CKEditor forum. Joe regularly updates the CKEditor bundled with mojoPortal as new versions are released.

3/24/2011 11:46:36 AM
Gravatar
Total Posts 18439

Re: editors and google chrome

I'm pretty sure there must be some background color applied directly to body{} in one of the css files in your skin.

you could explicitly set

body {background-color:white, color:black;}

in one of the css files, ideally one lower in the list in style.config so it comes in after anything else that might be setting the color.

then put the color back on the page with

body.pagebody{}

Note also, that in the next release of mojoPortal (coming next week), I have implemented a special class on the body for the editors so it will be easier to override styles in the editor like this:

body.wyswygeditor { background-color:white; color:black;}

Hope it helps,

Joe

3/24/2011 11:47:18 AM
Gravatar
Total Posts 43

Re: editors and google chrome

found a way to make the editor my way...

my problem now is the images on the editor...its just a red placer marker and they wont show up

3/24/2011 11:53:43 AM
Gravatar
Total Posts 18439

Re: editors and google chrome

most likely problem is that somehow the permissions on the image file do not allow read.

This can happen if you have not made sure that the /App_Data folder is writable, then when files are uploaded they first get saved down under windows/temp and this puts funky permissions on the file. If App_Data is writable it uploads there for temporary files and then moves them to the correct location and this way permissions remain as they should.

Hope it helps,

Joe

3/24/2011 12:30:33 PM
Gravatar
Total Posts 43

Re: editors and google chrome

i found the answer right before i saw your post m8 and you'r right...still running it on localhost and the damn Data folder had permissions that nulled the vision of imagens

 

tks alot for the help tho :P 

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