Closed (fixed)
Project:
Pixture
Version:
5.x-1.1
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Reporter:
Created:
6 May 2008 at 04:17 UTC
Updated:
14 Jul 2012 at 23:14 UTC
Please check attached image for details on the issue. There is lots of while space when printing pictures in comments. Thanks for your help.
| Comment | File | Size | Author |
|---|---|---|---|
| pictures_in_comments.png | 47.82 KB | CompShack |
Comments
Comment #1
MTecknology commentedLook into the ImageAssist module.
http://drupal.org/project/img_assist
Comment #2
drupaceous commentedSame thing here, using drupal 6.2 and image module.
Comment #3
Jeff Burnz commentedIts 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;
}
Comment #4
scoutbaker commentedI 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.
Comment #5
Jeff Burnz commentedSeems reasonable - any detractors?
Comment #6
Jeff Burnz commentedCommitted to head
Comment #7
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.