I use a modified version of the Cross Sell template. I wanted a way for my related items to come up on the more information page with pictures, instead of just text links on the left nav menu. I came up with a solution and thought I'd post it in case anyone else was looking to do the same thing.
The original PRODUCT template had Loop Subproducts in the navigation section of the template in between <div id="sectionLinks></div>. I simply moved it to the Text 1 section of the template, right after the Product Block. I also removed the list (<ul>) and stuck the results in a table. It looks like the following:
<!-- end productBlock -->
<BR /><BR />
[-- IF PRODUCT.NumSubProducts "0" --]
[-- ELSE --]
<hr width="100%" color="#999999" align="center" />
<div align="left">
<h3>Related Items:</h3>
<table width="100%">
[-- LOOP SUBPRODUCTS 3--]
<td>[-- SUBPRODUCTS --]</td>
[-- END_LOOP SUBPRODUCTS --]
</table>
</div>
[-- END_IF --]
</form>
</div><!-- end text1 -->
In your product template, just search for "end text" and that will take you right to this area.
Here's a working sample:
http://www.forrestrealm.com/store/product588.html
I hope that will help somebody!