Would you be able to help me with this also? Still trying to get everything aligned. At times the product title wraps to a 2nd line. I would like the thumbnail to align whether the product title is 1 line or 2 lines. I managed to accomplish this on the New Products view on the main page by editing the products_t.tpl from:
Code:
<table cellpadding="3" cellspacing="0" width="100%">
<tr>
<a href="product.php?productid={$products[product].productid}&cat={$cat}&page={$navigation_page}">{include file="product_thumbnail.tpl" productid=$products[product].productid image_x=$products[product].tmbn_x|default:$config.Appearance.thumbnail_width image_y=$products[product].tmbn_y product=$products[product].product tmbn_url=$products[product].tmbn_url}</a>
{if $active_modules.Special_Offers ne "" && $products[product].have_offers && $usertype eq 'C'}
{include file="modules/Special_Offers/customer/product_offer_thumb.tpl" product=$products[product]}
{/if}
to this:
Code:
<table cellpadding="3" cellspacing="0" width="100%">
<tr>
<td align=left valign=top rowspan="2" height="100%" nowrap="nowrap">
<a href="product.php?productid={$products[product].productid}&cat={$cat}&page={$navigation_page}">{include file="product_thumbnail.tpl" productid=$products[product].productid image_x=$products[product].tmbn_x|default:$config.Appearance.thumbnail_width image_y=$products[product].tmbn_y product=$products[product].product tmbn_url=$products[product].tmbn_url}</a>
{if $active_modules.Special_Offers ne "" && $products[product].have_offers && $usertype eq 'C'}
{include file="modules/Special_Offers/customer/product_offer_thumb.tpl" product=$products[product]}
{/if}
However, it does not change the featured products nor the products under the categories or providers. I'm unsure why this is? I checked the featured.tpl and it is pulling from the products_t.tpl.
Is there something else I need to edit to add the rowspan?
Thank you for all of your help!!