Guest Posted November 23, 2002 Posted November 23, 2002 I've done it before but can find it :shock: Where do i change the Header Height ....please Oct snapshot Made a search for Header Height and a few hits but nothing regarding this Regards
mattice Posted November 23, 2002 Posted November 23, 2002 set the td or table height element... <table width="bla" height="bla"> or td.. whatever suits your needs "Politics is the art of preventing people from taking part in affairs which properly concern them"
Guest Posted November 23, 2002 Posted November 23, 2002 Do you mean header.php? (where your main logo is) If so, it is as high as its contents. If you want to manually change the height (make it larger that its contents) then add height="xx" to the <TD> tag on or around line 53 in header.php. Tony
Qwackmaster Posted November 23, 2002 Posted November 23, 2002 If you're talking about the headers atop the info boxes, I think you're looking for: catalog/includes/classes/boxes.php Check out the documentation file at http://www.oscdox.com It covers this and a few bajillion other important tweaks. Good Luck. :D You've tried to philosophize your pain but the hurt's in your heart and not in your brain
Guest Posted November 23, 2002 Posted November 23, 2002 If i remember well, by default the height is 50 and i changed it to 75 to insert my logo but in header.php i dont see nothing with the height set at 75 :?: Regards
Qwackmaster Posted November 23, 2002 Posted November 23, 2002 OOps sorry wrong header... :D You've tried to philosophize your pain but the hurt's in your heart and not in your brain
Guest Posted November 23, 2002 Posted November 23, 2002 Ok check what it should look like at http://www.bird-e-toys.com/osc/catalog/default.php (the items and total in the header) here is my header.php <?php /* $Id: header.php,v 1.36 2002/08/15 17:29:47 dgw_ Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2001 osCommerce Released under the GNU General Public License */ // check if the 'install' directory exists, and warn of its existence if (WARN_INSTALL_EXISTENCE == 'true') { if (file_exists(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/install')) { tep_output_warning(WARNING_INSTALL_DIRECTORY_EXISTS); } } // check if the configure.php file is writeable if (WARN_CONFIG_WRITEABLE == 'true') { if ( (file_exists(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/includes/configure.php')) && (is_writeable(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/includes/configure.php')) ) { tep_output_warning(WARNING_CONFIG_FILE_WRITEABLE); } } // check if the session folder is writeable if (WARN_SESSION_DIRECTORY_NOT_WRITEABLE == 'true') { if (STORE_SESSIONS == '') { if (!is_dir(tep_session_save_path())) { tep_output_warning(WARNING_SESSION_DIRECTORY_NON_EXISTENT); } elseif (!is_writeable(tep_session_save_path())) { tep_output_warning(WARNING_SESSION_DIRECTORY_NOT_WRITEABLE); } } } // check session.auto_start is disabled if ( (function_exists('ini_get')) && (WARN_SESSION_AUTO_START == 'true') ) { if (ini_get('session.auto_start') == '1') { tep_output_warning(WARNING_SESSION_AUTO_START); } } if ( (WARN_DOWNLOAD_DIRECTORY_NOT_READABLE == 'true') && (DOWNLOAD_ENABLED == 'true') ) { if (!is_dir(DIR_FS_DOWNLOAD)) { tep_output_warning(WARNING_DOWNLOAD_DIRECTORY_NON_EXISTENT); } } ?> <table border="0" width="750" cellspacing="1" cellpadding="1" align="center"> <tr class="header"> <td valign="middle"><?php echo tep_image(DIR_WS_IMAGES . 'commerce-banniere.gif', 'osCommerce'); ?></td> </tr> </table> <table class="infoBox" width="140" border="0" cellspacing="2" cellpadding="2"> <tr> <td class="accountCategory" align="right"> Items: </td> <td class="accountCategory" align="left"> <?php echo $cart->count_contents(); ?> </td> <td class="accountCategory" align="right"> Total: </td> <td class="accountCategory" align="left"> <?php echo $currencies->format($cart->show_total()); ?> </td> </tr> </table> <table border="0" width="750" cellspacing="1" cellpadding="1" align="center"> <tr class="headerNavigation"> <td class="headerNavigation"> <?php echo $breadcrumb->trail(' » '); ?></td> <td align="right" class="headerNavigation"><?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_LOGOFF; ?></a> | <?php } ?><a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> | <a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> | <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CHECKOUT; ?></a> </td> </tr> </table> <?php if ($HTTP_GET_VARS['error_message'] != '') { ?> <table border="0" width="750" cellspacing="1" cellpadding="1" align="center"> <tr class="headerError"> <td class="headerError"><?php echo urldecode($HTTP_GET_VARS['error_message']); ?></td> </tr> </table> <?php } if ($HTTP_GET_VARS['info_message'] != '') { ?> <table border="0" width="750" cellspacing="1" cellpadding="1" align="center"> <tr class="headerInfo"> <td class="headerInfo"><?php echo $HTTP_GET_VARS['info_message']; ?></td> </tr> </table> <?php } ?> and this is MY result www.charme-et-vous.com/catalog
Recommended Posts
Archived
This topic is now archived and is closed to further replies.