rstn123 Posted November 7, 2002 Posted November 7, 2002 There is a space under where the oscommerce.gif. I think its where those icons are that are the same thing as "my account" "Cart Contents" "Checkout" are. I took those icons out a long time ago but there is a space under the main logo still that looks a bit odd. Is there somewhere I can take that space out? Its the same color as the background image for my logo but it just looks weird with all that space there. Anyone know how to change that? Thanks
Ajeh Posted November 8, 2002 Posted November 8, 2002 In the header.php there is a table for the logo and navigation images then a table for the navigation bar. The other tables only appear if there is something to display. Check and make sure you did not misalign the <table> <tr> or <td> when inserting your logo. Or, if you have a URL to peek at we might be able to see the problem.
rstn123 Posted November 8, 2002 Author Posted November 8, 2002 here is my code.....I dont want a bunch of hits on my cart from posting the url so Ill also post a screenshot here. Thanks Screenshot link at the bottom Code <?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); } } ?> <div align="center"> <table border="0" width="760" cellspacing="0" cellpadding="0" align=center height="130"> <tr class="header"> <td valign="middle"> <?php echo tep_image(DIR_WS_IMAGES . 'taste.gif', 'Taste Of Cajun'); ?> </td> </tr> </table> <table border="0" width="760" cellspacing="0" cellpadding="0" 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="760" cellspacing="0" cellpadding="0" 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="760" cellspacing="0" cellpadding="0" align=center> <tr class="headerInfo"> <td class="headerInfo"> <?php echo $HTTP_GET_VARS['info_message']; ?> </td> </tr> </table> <?php } ?> </div> http://www.vxamerica.com/Image1.jpg
Ajeh Posted November 8, 2002 Posted November 8, 2002 You are specifying a table height of 130. What does it do if you get rid of that?
rstn123 Posted November 8, 2002 Author Posted November 8, 2002 i added that trying to change it. I took it out and its still the same. Is it defined anywhere else?
Ajeh Posted November 8, 2002 Posted November 8, 2002 It would really help if I could touch the real page and view the source code to see the problem.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.