dolmundo Posted December 4, 2005 Posted December 4, 2005 I need to change my boxes header size because the text does not fit in it. http://tekcenter.biz/catalogo/index.php the right side column the "Hist?rico de Encomendas" one, the text is to big so i need to change size of the header. I have changed the .gif but does not work. Thanks in advance
samantha_Scor Posted December 5, 2005 Posted December 5, 2005 I need to change my boxes header size because the text does not fit in it. http://tekcenter.biz/catalogo/index.php the right side column the "Hist?rico de Encomendas" one, the text is to big so i need to change size of the header. I have changed the .gif but does not work. Thanks in advance give me your code of the infoboxes, its should under boxes folder, i will modify for you
dolmundo Posted December 7, 2005 Author Posted December 7, 2005 give me your code of the infoboxes, its should under boxes folder, i will modify for you <?php /* $Id: order_history.php,v 1.5 2003/06/09 22:18:30 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ if (tep_session_is_registered('customer_id')) { // retreive the last x products purchased $orders_query = tep_db_query("select distinct op.products_id from " . TABLE_ORDERS . " o, " . TABLE_ORDERS_PRODUCTS . " op, " . TABLE_PRODUCTS . " p where o.customers_id = '" . (int)$customer_id . "' and o.orders_id = op.orders_id and op.products_id = p.products_id and p.products_status = '1' group by products_id order by o.date_purchased desc limit " . MAX_DISPLAY_PRODUCTS_IN_ORDER_HISTORY_BOX); if (tep_db_num_rows($orders_query)) { ?> <!-- customer_orders //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_CUSTOMER_ORDERS); new infoBoxHeading($info_box_contents, false, false); $product_ids = ''; while ($orders = tep_db_fetch_array($orders_query)) { $product_ids .= (int)$orders['products_id'] . ','; } $product_ids = substr($product_ids, 0, -1); $customer_orders_string = '<table border="0" width="100%" cellspacing="0" cellpadding="1">'; $products_query = tep_db_query("select products_id, products_name from " . TABLE_PRODUCTS_DESCRIPTION . " where products_id in (" . $product_ids . ") and language_id = '" . (int)$languages_id . "' order by products_name"); while ($products = tep_db_fetch_array($products_query)) { $customer_orders_string .= ' <tr>' . ' <td class="smallText"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products['products_id']) . '">' . $products['products_name'] . '</a></td>' . ' <td class="smallText" align="right" valign="top"><a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=cust_order&pid=' . $products['products_id']) . '">' . tep_image(DIR_WS_ICONS . 'cart.gif', ICON_CART) . '</a></td>' . ' </tr>'; } $customer_orders_string .= '</table>'; $info_box_contents = array(); $info_box_contents[] = array('text' => $customer_orders_string); new infoBox($info_box_contents); ?> </td> </tr> <!-- customer_orders_eof //--> <?php } } ?>
Recommended Posts
Archived
This topic is now archived and is closed to further replies.