whololoo Posted June 22, 2007 Share Posted June 22, 2007 I'll be very grateful to whoever can give me some advice on how i can move the thumbnail image of a product from the left side -of the detail page- to the top: the following images should give you an idea: (Thanks for your time!) and here is how the actual page looks like: http://www.bayareadigitalpost.com/sony-hdr...tml?language=fr (do i need to change something in "product_info.php") the code in that file is: ********************************************************************* ********************************************************************* ********************************************************************* <?php /* $Id: product_info.php,v 1.97 2003/07/01 14:34:54 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRODUCT_INFO); $product_check_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'"); $product_check = tep_db_fetch_array($product_check_query); $content = CONTENT_PRODUCT_INFO; $javascript = 'popup_window.js'; include (bts_select('main', $content_template)); // BTSv1.5 require(DIR_WS_INCLUDES . 'application_bottom.php'); ?> ********************************************************************* ********************************************************************* ********************************************************************* Thank you very much for your time Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.