blackterror Posted June 15, 2009 Posted June 15, 2009 Hello to all. I'm having some troubles with my header. In Mozilla Firefox it's all okay, but in Internet Explorer it's not ok. You can see this from the screenshoots. I will show my header.php. I am a Firefox user, but here in my country 70% of peoples are using Internet Explorer as default browser. I need to fix this problem soon. Regards, blackterror. Screenshoots: From firefox: http://i39.tinypic.com/2qlqza8.jpg From Intenet Eplorer: http://i42.tinypic.com/4sdufq.jpg header.php => <?php /* $Id: header.php,v 1.42 2003/06/10 18:20:38 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions [url="http://www.oscommerce.com"]http://www.oscommerce.com[/url] Copyright © 2003 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')) { $messageStack->add('header', WARNING_INSTALL_DIRECTORY_EXISTS, 'warning'); } } // 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')) ) { $messageStack->add('header', WARNING_CONFIG_FILE_WRITEABLE, 'warning'); } } // check if the session folder is writeable if (WARN_SESSION_DIRECTORY_NOT_WRITEABLE == 'true') { if (STORE_SESSIONS == '') { if (!is_dir(tep_session_save_path())) { $messageStack->add('header', WARNING_SESSION_DIRECTORY_NON_EXISTENT, 'warning'); } elseif (!is_writeable(tep_session_save_path())) { $messageStack->add('header', WARNING_SESSION_DIRECTORY_NOT_WRITEABLE, 'warning'); } } } // check session.auto_start is disabled if ( (function_exists('ini_get')) && (WARN_SESSION_AUTO_START == 'true') ) { if (ini_get('session.auto_start') == '1') { $messageStack->add('header', WARNING_SESSION_AUTO_START, 'warning'); } } if ( (WARN_DOWNLOAD_DIRECTORY_NOT_READABLE == 'true') && (DOWNLOAD_ENABLED == 'true') ) { if (!is_dir(DIR_FS_DOWNLOAD)) { $messageStack->add('header', WARNING_DOWNLOAD_DIRECTORY_NON_EXISTENT, 'warning'); } } if ($messageStack->size('header') > 0) { echo $messageStack->output('header'); } ?> <center> <table border="0" width="990" height="211" cellspacing="0" cellpadding="0" style="margin-top:0px; " > <tr> <td width="207" height="47" style="padding-left:0px; " valign="top" align="left"><img src="images/logo.png" width="182" height="100" alt="" border="0" /></td> <td width="310" height="37"></td> <td width="45" height="37" style="padding-top:60px; margin-top:0px;" align="left"><a href=""><img src="images/cart-small.png" alt="" width="35" height="32"</a></td> <td width="140" height="37" align="right" style="padding-top:60px; "><?php require(DIR_WS_BOXES . 'shopping_cart.php'); ?></td> </tr> <tr> <td width="275" height="164" style="background:url('images/bann1.png') no-repeat; padding-left:0px;" align="left"> <ul class="topmenu"> <li><a href="<?php echo tep_href_link(FILENAME_ABOUT_US) ?>" class="atopmenu">Despre Noi</a></li> <li><a href="<?php echo tep_href_link(FILENAME_SPECIALS) ?>" class="atopmenu">Oferte</a></li> <li><a href="<?php echo tep_href_link(FILENAME_ADVANCED_SEARCH) ?>" class="atopmenu">Cautare avansata</a></li> <li><a href="<?php echo tep_href_link(FILENAME_CREATE_ACCOUNT) ?>" class="atopmenu">Creeaza un cont</a></li> <li><a href="<?php echo tep_href_link(FILENAME_LOGIN) ?>" class="atopmenu">Autentificare clienti</a></li> </ul> <div style="padding-top:17px; padding-left:20px; "> <center><?php require(DIR_WS_BOXES . 'search.php'); ?></center> </div> </td> <td colspan="0" width="715" height="164"><a href=""><img src="images/bann3.png" width="715" height="164" border="0" alt="SPA" /></a></td> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="990" height="39" style="margin-bottom:0px; "> <tr> <td width="100%" height="38" bgcolor="#ffae38" style="padding-bottom:5px; "><?php require(DIR_WS_BOXES . 'menu.php'); ?></td> </tr> </table> <?php if (isset($HTTP_GET_VARS['error_message']) && tep_not_null($HTTP_GET_VARS['error_message'])) { ?> <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="headerError"> <td class="headerError"><?php echo htmlspecialchars(urldecode($HTTP_GET_VARS['error_message'])); ?></td> </tr> </table> <?php } if (isset($HTTP_GET_VARS['info_message']) && tep_not_null($HTTP_GET_VARS['info_message'])) { ?> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr class="headerInfo"> <td class="headerInfo"><?php echo htmlspecialchars($HTTP_GET_VARS['info_message']); ?></td> </tr> </table> <?php } ?>
blackterror Posted June 15, 2009 Author Posted June 15, 2009 I've solved the problem. Thank you anyway.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.