Please check attached image for details on the issue. There is lots of while space when printing pictures in comments. Thanks for your help.

CommentFileSizeAuthor
pictures_in_comments.png47.82 KBCompShack

Comments

MTecknology’s picture

Look into the ImageAssist module.
http://drupal.org/project/img_assist

drupaceous’s picture

Same thing here, using drupal 6.2 and image module.

Jeff Burnz’s picture

Its got nothing to do with image modules, its all in the css.

Look for the comment styles - for version 6.x (similar for 5.x)

style.css (line 463) - change the clear:both to clear:none; beware, .node .content is grouped with .comment .content, so you may want to seperate them if you don't want nodes to get the same styles.

.comment .content {
clear: none;
margin:1em 0.5em 0.5em;
}

then in style.css (line 745) add a clear:both to .comment div.links...

.comment div.links {
padding: 5px;
margin-top: 0px;
clear: both;
}

scoutbaker’s picture

I made the changes as noted in #3 on a D5 site, and it works exactly as expected.

I would like to give a +1 to making this a feature request to be added in to the next release of the theme.

Jeff Burnz’s picture

Assigned: Unassigned » Jeff Burnz

Seems reasonable - any detractors?

Jeff Burnz’s picture

Status: Active » Fixed

Committed to head

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.