Bundle Images
Using Jamroom
You could also change the size of the div the images are in so they do not overlap the text on the right.
In your modules/jrFoxyCartBundle/templates/item_list.tpl, find this:
<div class="row" style="margin-top:12px;">
<div class="col3">
<div class="block_image">
{jrCore_module_function function="jrImage_stacked_image" module="{$item.stacked_image_module}" type="{$item.stacked_image_type}" item_id="{$item.stacked_image_item_id}" size="icon" alt="{$item.bundle_title}" border_width=0}
</div>
</div>
<div class="col8">
<div class="p5 pl10">
<h2>{jrCore_lang module="jrFoxyCartBundle" id="43" default="Includes the following items"}:</h2><br>
{if is_array($item.bundle_items)}
{foreach $item.bundle_items as $_i}
<div style="float:left; width:49%"><h3>• <a href="{$_i.item_url}">{$_i.item_title}</a></h3></div>
{/foreach}
{/if}
</div>
</div>
<div class="col1 last">
<div class="p5 center">
{* show savings if we can *}
{if isset($item.bundle_item_savings) && $item.bundle_item_savings > 0}
<h2><b>{jrCore_lang module="jrFoxyCartBundle" id="44" default="Save"}<br>${$item.bundle_item_savings|number_format:2}</b></h2>
{/if}
</div>
</div>
</div>
and change it to this:
<div class="row" style="margin-top:12px;">
<div class="col4">
<div class="block_image">
{jrCore_module_function function="jrImage_stacked_image" module="{$item.stacked_image_module}" type="{$item.stacked_image_type}" item_id="{$item.stacked_image_item_id}" size="icon" alt="{$item.bundle_title}" border_width=0}
</div>
</div>
<div class="col7">
<div class="p5 pl10">
<h2>{jrCore_lang module="jrFoxyCartBundle" id="43" default="Includes the following items"}:</h2><br>
{if is_array($item.bundle_items)}
{foreach $item.bundle_items as $_i}
<div style="float:left; width:49%"><h3>• <a href="{$_i.item_url}">{$_i.item_title}</a></h3></div>
{/foreach}
{/if}
</div>
</div>
<div class="col1 last">
<div class="p5 center">
{* show savings if we can *}
{if isset($item.bundle_item_savings) && $item.bundle_item_savings > 0}
<h2><b>{jrCore_lang module="jrFoxyCartBundle" id="44" default="Save"}<br>${$item.bundle_item_savings|number_format:2}</b></h2>
{/if}
</div>
</div>
</div>
Hope this helps!