View Single Post
  #7  
Old 10-30-2008, 09:11 AM
 
MBA MBA is offline
 

eXpert
  
Join Date: Apr 2006
Posts: 245
 

Default Re: Thumbnail of alternate view under product image

Why are you putting images inside of a table? table = tabular... you only use table tags for data... never images. You can recover some cart speed by using this trick.

instead of table tags use div tags and limit your image by adding style comment to your image i.e. style="float:left"

example:

<div style="whatever-you-want;">
<img src"./images/D/xxxxxxxx.jpg" style="width:70px; height:70px; float:left; what-ever-else-you-want;" />
</div>

Just use similar code to this around the smarty tags and you'll start to sort out how to control your images a lot better.
__________________
xCart Pro Version 4.0.17, 4.0.19, 4.1.8, 4.1.10, 4.1.11, 4.1.12 - retired
xCart Pro Version 4.3.1 - production
xCart Pro Version 4.5.1 - testing
RHEL Platform
Reply With Quote