I have a Jquery gallery on my product page, it uses the following code to work:
Code:
<script language="javascript">
$(document).ready(
function (){
$("#pikame").PikaChoose({carousel:true,carouselOptions:{wrap:'circular'}});
});
</script>
Code:
<div id="pikawrapper"><div class="pikachoose">
<?php
if (sizeof($images_array) > 0) {
?>
<ul id="pikame" class="jcarousel-skin-pika">
<?php
for($img=0; $img<sizeof($images_array); $img++) {
echo '<li>' . zen_image('images/' . $images_array[$img]) . '</li>';
} ?>
</ul>
<?php } ?>
</div></div>
Here's a link to a product page with this implemented.
http://www.pazzle.co.uk/index.php?ma...&products_id=3
If you notice, the thumbnails of the images are distorted and I have no idea why. Any ideas on how to fix this?