fast borders mod (developed for our templates in 15 minutes)
1. add in the end of your main.css
Code:
.products-table{border-left:1px solid #d7e8ff;border-top:1px solid #d7e8ff}
.products-table td.product-cell {border-right:1px solid #d7e8ff}
.products-table .last-row .product-cell{border-bottom:#d7e8ff solid 1px}
2. open customer/main/products_t.tpl and replace
Code:
<tr>
{foreach from=$row item=product}
{if $product}
<td class="product-cell product-cell-buynow">
{if $config.Appearance.buynow_button_enabled eq "Y"}
{include file="customer/main/buy_now.tpl"}
{else}
{/if}
</td>
{/if}
{/foreach}
</tr>
with
Code:
<tr class="last-row">
{foreach from=$row item=product}
{if $product}
<td class="product-cell product-cell-buynow">
{if $config.Appearance.buynow_button_enabled eq "Y"}
{include file="customer/main/buy_now.tpl"}
{else}
{/if}
</td>
{/if}
{/foreach}
</tr>
(actually just add class to the tr element in the first line of code above)