Hi,

I have installed column layout grid, and it works fine, I am trying to customize it by adding specific divs, some of which are ok when done in common/tpl_columnar_display.php but I need to group some of the information together which I guess should be done in modules/product_listing.php file and I am lost there.

Right now I have this:

HTML Code:
<div class="my-wrapper-one"><!-- this is added in common/tpl_columnar_display.php -->
<!-- these are coded in modules/product_listing.php -->
	<div class="centerBoxContentsProducts centeredContent back">
		<div class="listingImage">
		<img src="images/dvd/a_bugs_life.gif" />
		</div>
		<h3 class="itemTitle">A Bug's Life</h3>
		<div class="listingDescription">
		A Bug's Life
		</div>
		<div class="listingPrice">
		35.99
		</div>
		<div class="listingButtonGroup">
		... more info
		</div>
		<div class="listingModel">
		DVD-ABUG
		</div>
	</div>
<!-- END these are coded in modules/product_listing.php -->
</div>
Now what I need is to group and wrap those info generated in modules/product_listing.php
something like this
HTML Code:
<div class="my-wrapper-one"><!-- this is added in tpl_columnar_display.php -->
	<div class="centerBoxContentsProducts centeredContent back">
		<div class="my-first-group">
			<div class="listingImage">
			<img src="images/dvd/a_bugs_life.gif" />
			</div>
			<h3 class="itemTitle">A Bug's Life</h3>
		</div>
		<div class="my-second-group">
			<div class="listingDescription">
			A Bug's Life
			</div>
			<div class="listingPrice">
			35.99
			</div>
			<div class="listingButtonGroup">
			... more info
			</div>
			<div class="listingModel">
			DVD-ABUG
			</div>
		</div>
	</div>
</div>
Eventually being able to move some info from one group to the other would be great.

Thank you