Pictures in Comments
CompShack - May 6, 2008 - 04:17
| Project: | Pixture |
| Version: | 5.x-1.1 |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | jmburnz |
| Status: | closed |
Jump to:
Description
Please check attached image for details on the issue. There is lots of while space when printing pictures in comments. Thanks for your help.
| Attachment | Size |
|---|---|
| pictures_in_comments.png | 47.82 KB |

#1
Look into the ImageAssist module.
http://drupal.org/project/img_assist
#2
Same thing here, using drupal 6.2 and image module.
#3
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;
}
#4
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.
#5
Seems reasonable - any detractors?
#6
Committed to head
--project followup subject--
Automatically closed -- issue fixed for two weeks with no activity.
#7
Automatically closed -- issue fixed for two weeks with no activity.