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

Jeff Burnz’s picture

Category: bug » support

If 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;}

portait’s picture

Thanks, that worked perfectly. I am just starting to learn how to tweak css. ^^

Jeff Burnz’s picture

Status: Active » Closed (fixed)