View Single Post
  #116  
Old 02-15-2007, 10:23 AM
 
MattUK MattUK is offline
 

Member
  
Join Date: Nov 2006
Posts: 23
 

Default Re: Lightbox JS v2.0 implementation

Okay, it's now nearly exactly how I want it. I currently have this as my productpage.tpl

Quote:
{if $images ne ""}
<div style="white-space:nowrap;color:#000000;font-weight:bold;padding:2px;margin:10px 0 4px;">Click Images To Enlarge</div>
{section name=image loop=$images}
{if $images[image].avail eq "Y"}
{if $images[image].tmbn_url}
<div style="white-space: nowrap;padding-left:10px;"><a href="{$images[image].tmbn_url}" title="{$images[image].alt|escape}" class="thickbox" rel="[detailed]"><img src="{$images[image].tmbn_url}" width="75" style="border:0;" alt="{$lng.lbl_click_to_enlarge|escape}" /></a></div>
{else}
<div style="white-space: nowrap;padding-left:10px;"><a href="{$xcart_web_dir}/product_image.php?imageid={$images[image].imageid}" title="{$images[image].alt|escape}" class="thickbox" rel="[detailed]"><img src="{$images[image].tmbn_url}" width="75" style="border:0;" alt="{$lng.lbl_click_to_enlarge|escape}" /></a></div>
{/if}
{/if}
{/section}
{/if}

How can I alter this so the images run horizontally instead of vertically?
__________________
X-Cart Gold 4.1.9
Reply With Quote