Closed (fixed)
Project:
Newswire
Version:
6.x-3.2
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
8 Feb 2009 at 18:31 UTC
Updated:
11 Mar 2009 at 02:15 UTC
When styling imagefield images next to each other with the following float css code, the comments moves up within the image area. When using the default garland theme this does not happen.
.field-field-blog-image-multiple img {
float:left;
padding:3px;
}
Comments
Comment #1
Jeff Burnz commentedIf you float something, the following elements need to clear the float (if that is the design you are after).
You'll probably want to add something like...
#comments {clear: both;}
Comment #2
portait commentedThanks, that worked perfectly. I am just starting to learn how to tweak css. ^^
Comment #3
Jeff Burnz commented