Guest Posted January 10, 2012 Posted January 10, 2012 Apologies if this has been asked before. I cannot work out why my large image in the product page will not align to the right below the price. I am quite a newbie at php so please go easy on me. I am learning this as i go. The link for an example is: http://shop.quinzebouteilles.com/product_info.php?cPath=22&products_id=51 Thanks Lee
multimixer Posted January 10, 2012 Posted January 10, 2012 You need to adjust the settings in file catalog/product_info.php, the part that look like this <script type="text/javascript"> $('#piGal ul').bxGallery({ maxwidth: 300, maxheight: 200, thumbwidth: <?php echo (($pi_counter > 1) ? '65' : '0'); ?>, thumbcontainer: 300, load_image: 'ext/jquery/bxGallery/spinner.gif' }); </script> You could set it for example like this <script type="text/javascript"> $('#piGal ul').bxGallery({ maxwidth: 250, maxheight: 350, thumbwidth: <?php echo (($pi_counter > 1) ? '65' : '0'); ?>, thumbcontainer: 250, load_image: 'ext/jquery/bxGallery/spinner.gif' }); </script> You can set the thumbcontainer to 1 in case you don't plan any additional images My community profile | Template system for osCommerce - New: Responsive | Feedback channel
Guest Posted January 11, 2012 Posted January 11, 2012 Working perfectly now. Thanks Multimixer for your speed and help. Much appreciated
Recommended Posts
Archived
This topic is now archived and is closed to further replies.