Add a line break between files

Is it possible to add a line break between files if more than one image is displaying at a time on the items/show page? If I have two images displaying for an item, the images are sitting on top of each other.

The code I am using to display the images is:

<div class="element-text"><?php echo files_for_item(array('imageSize' => 'fullsize')); ?></div>

If you look at the markup that actually produces, you should see that each file has a div container around it. It should be trivial to add a style to your theme's CSS that adds a bottom or top margin to those divs and gives you spacing between the files.

Wow, so easy. A simple margin-bottom took care of the problem.
I can't believe I didn't think of this.

Thanks John..