When I insert an image into the tinymce textarea - whether using img_assist, as a file attachment, or using the full url of the image in tinymce's image upload button - the image always shows up in a squished, square size which seems to be controlled by the image_assist module setting, which I've tried changing (even leaving out the height) to no avail. I've also tried setting the size to custom in the image_assist form but it still gets overriden. What's weird is that when I preview the trimmed preview shows the correct size but the full preview shows the squished version.

Does anyone know what might be causing this behavior?
Thanks.

Comments

greygoo’s picture

I just tried manually uninstalling image_assist module completely from drupal but the problem still remains with whatever image I insert into tinymce. The image module's thumbnail setting seems to be taking over. Should I completely remove the image module and try IMCE for Tinymce (http://drupal.org/project/imce) instead?

greygoo’s picture

This is really weird. I just completely removed the image module and installed IMCE for Tinymce but the image I upload through IMCE is also showing up resized. I'm really confused now.

greygoo’s picture

found the culprit. it was a css issue. I had to change
.audio-playlist-body img
in audio playlist module's css to

{
  float:left;
  width:150px;
  margin:0px 10px 10px 0px;
  padding:0px;
  border:solid black 1px;
  }

Thanks everyone for all your help. ;)