View Single Post
  #151  
Old 07-30-2013, 07:42 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart - reBOOT - Responsive Template

Quick mod to add thumbnail tooltips to next/previous product links...

skin/reboot/custom/product_next_prev.tpl

Replace entire code with...

Code:
{if $prev.productid || $next.productid} <ul class="pager"> <li class="previous"><a class="ttip_n" title="<img src='image.php?type=T&id={$prev.productid}' style='height:75px' alt='{$prev.product}'>" href="product.php?productid={$prev.productid}"><i class="icon-angle-left"></i> {$prev.product}</a></li> <li class="next"><a class="ttip_n" title="<img src='image.php?type=T&id={$next.productid}' style='height:75px' alt='{$next.product}'>" href="product.php?productid={$next.productid}">{$next.product} <i class="icon-angle-right"></i></a></li> </ul> {/if}
__________________
xcartmods.co.uk
Reply With Quote