alidj242013-03-11 22:28 | Hello,
$content .= '<ul class="imagesList" id="imagesListPreview">';
and replace with:
$content .= '<div class="holder"></div><ul class="imagesList" id="imagesListPreview">';
$content .=<a href="'.DIR_FILES.$aData['sFileName'].'" onmouseover="previewImage( this, \''.$aData['sFileName'].'\' )" class="mlbox[preview]" title="'.$aData['sAlt'].'"><img src="'.DIR_FILES.$aData['iSizeValue2'].'/'.$aData['sFileName'].'" alt="'.$aData['sAlt'].'" /></a>
had <li> at the begining of <a href...> and </li> after </a> as you can see bellow:
$content .= '<li><a href="'.DIR_FILES.$aData['sFileName'].'" onmouseover="previewImage( this, \''.$aData['sFileName'].'\' )" class="mlbox[preview]" title="'.$aData['sAlt'].'"><img src="'.DIR_FILES.$aData['iSizeValue2'].'/'.$aData['sFileName'].'" alt="'.$aData['sAlt'].'" /></a></li>';
» Quick.Cart v6.x |
alidj242013-03-11 22:32 | one small add, for those who want not to open an popup with picture after clicking an thumb just replace
$content .= '<li><a href="'.DIR_FILES.$aData['sFileName'].'" onmouseover="previewImage( this, \''.$aData['sFileName'].'\' )" class="mlbox[preview]" title="'.$aData['sAlt'].'"><img src="'.DIR_FILES.$aData['iSizeValue2'].'/'.$aData['sFileName'].'" alt="'.$aData['sAlt'].'" /></a></li>';
with
$content .= '<LI><img onclick="previewImage( this, \''.$aData['sFileName'].'\' )" class="mlbox[preview]" title="'.$aData['sAlt'].'" src="'.DIR_FILES.$aData['iSizeValue2'].'/'.$aData['sFileName'].'" alt="'.DIR_FILES.$aData['sFileName'].'" /></LI>';
and on click the image will change only in the big preview <div> |
kasev3v2013-04-22 09:36 | Hi, I am finding this way of image preview. |