Results 1 to 8 of 8
  1. #1
    Join Date
    Aug 2010
    Posts
    202
    Plugin Contributions
    0

    Default gap on top of page

    www.notoriousarc.com

    Sometimes when my website loads there is a large gap at the top of the header image. other times it is not there. i cant seem to figure out why this is happening. it mostly happens in FireFox but i have seen it in chrome as well.

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: gap on top of page

    What do you have defined for the image in
    /includes/languages/english/andover_modern/header.php
    Zen-Venom Get Bitten

  3. #3
    Join Date
    Aug 2010
    Posts
    202
    Plugin Contributions
    0

    Default Re: gap on top of page

    Code:
    <?php
    /**
     * @package languageDefines
     * @copyright Copyright 2003-2006 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: header.php 2940 2006-02-02 04:29:05Z drbyte $
     */
    
    // header text in includes/header.php
      define('HEADER_TITLE_CREATE_ACCOUNT', 'Create Account');
      define('HEADER_TITLE_MY_ACCOUNT', 'My Account');
      define('HEADER_TITLE_CART_CONTENTS', 'Shopping Cart');
      define('HEADER_TITLE_CHECKOUT', '<span class="header-checkout">Checkout</span>');
      define('HEADER_TITLE_TOP', 'Top');
      define('HEADER_TITLE_CATALOG', 'Home');
      define('HEADER_TITLE_LOGOFF', 'Log Out');
      define('HEADER_TITLE_LOGIN', 'Log In');
      define('HEADER_TITLE_CONTACT_US', 'Contact Us');
    
    
    
    // added defines for header alt and text
      define('HEADER_ALT_TEXT', '');
      define('HEADER_SALES_TEXT', '');
      define('HEADER_LOGO_WIDTH', '650px');
      define('HEADER_LOGO_HEIGHT', '257px');
      define('HEADER_LOGO_IMAGE', 'logo.jpg');
    
    // header Search Button/Box Search Button
      define('HEADER_SEARCH_BUTTON','Search');
      define('HEADER_SEARCH_DEFAULT_TEXT', 'Enter search keywords here');
    
    ?>

  4. #4
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: gap on top of page

    Code:
      define('HEADER_LOGO_WIDTH', '650px');
      define('HEADER_LOGO_HEIGHT', '257px');

    Your image size is 1,100px × 235px

    Edit a copy of tpl_header.php for your template and remove or comment out the clear both after the logo wrapper definition
    Code:
    <div id="logoWrapper">
        <div id="logo"><a href="http://notoriousarc.com/"><img src="includes/templates/andover_modern/images/logo.jpg"     <div id="tagline"></div>
    
    </div>
    
    <br class="clearBoth" />
    Zen-Venom Get Bitten

  5. #5
    Join Date
    Aug 2010
    Posts
    202
    Plugin Contributions
    0

    Default Re: gap on top of page

    did that and it didnt fix the problem, it just removed my image from my top menu area

  6. #6
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: gap on top of page

    Either you or the template has moved the header items outside of the mainWrapper...
    If you, why did you do this?
    If the 3rd party template, try posting in the support thread for it
    Zen-Venom Get Bitten

  7. #7
    Join Date
    Aug 2010
    Posts
    202
    Plugin Contributions
    0

    Default Re: gap on top of page

    here is the code:
    Code:
    <?php
    /**
     * Common Template - tpl_header.php
     *
     * this file can be copied to /templates/your_template_dir/pagename<br />
     * example: to override the privacy page<br />
     * make a directory /templates/my_template/privacy<br />
     * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
     * to override the global settings and turn off the footer un-comment the following line:<br />
     * <br />
     * $flag_disable_header = true;<br />
     *
     * @package templateSystem
     * @copyright Copyright 2003-2006 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: tpl_header.php 4813 2006-10-23 02:13:53Z drbyte $
     */
    ?>
    
    <?php
      // Display all header alerts via messageStack:
      if ($messageStack->size('header') > 0) {
        echo $messageStack->output('header');
      }
      if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
      echo htmlspecialchars(urldecode($_GET['error_message']));
      }
      if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
       echo htmlspecialchars($_GET['info_message']);
    } else {
    
    }
    ?>
    
    
    <!--bof-header logo and navigation display-->
    <?php
    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?>
    
    
    <div id="header-curr-lang">
    <?php require(DIR_WS_MODULES . 'sideboxes/languages_header.php'); ?>
    <?php require(DIR_WS_MODULES . 'sideboxes/currencies_header.php'); ?>
    <div class="clearBoth"></div>
    </div>
    <div id="headerWrapper">
    
    
    <!--bof-branding display-->
    <div id="logoWrapper">
        <div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?>
          <div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
    
    </div>
    <?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
    
    </div>
        <div id="taglineWrapper">
    <?php
                  if (HEADER_SALES_TEXT != '') {
    ?>
    
    <?php
                  }
    ?>
    </div>
    <?php
                  if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
                    if ($banner->RecordCount() > 0) {
    ?>
          <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
    <?php
                    }
                  }
    ?>
        
    <?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
    
    <br class="clearBoth" />
    <!--eof-branding display-->
    
    <!--eof-header logo and navigation display-->
    
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
        <ul class="back">
       <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a> | </li>                                                                        
        <li><?php echo '<a href="' . zen_href_link(FILENAME_CONTACT_US) . '">'; ?><?php echo HEADER_TITLE_CONTACT_US; ?></a> | </li>
       <?php if ($_SESSION['customer_id']) { ?>
       <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a> | </li>
       <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> | </li>
    <?php
      } else {
       if (STORE_STATUS == '0') {
    ?>
         <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a> | </li>
    	<?php } } ?>
      <li><img src="includes/templates/andover_modern/images/cart.jpg" class="cart-image" alt="the shopping cart" /><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <?php echo $_SESSION['cart']->count_contents();?> item(s) - <?php echo $currencies->format($_SESSION['cart']->show_total());?></a> | </li>
    	<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
    	<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
       <?php }?>
    
    </ul>
    </div>
    <div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
    <br class="clearBoth" />
    </div>
    <!--eof-navigation display-->
    
    
    
    <!--bof-optional categories tabs navigation display-->
    <?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
    <!--eof-optional categories tabs navigation display-->
    
    <!--bof-header ezpage links-->
    <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
    <?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
    <?php } ?>
    <!--eof-header ezpage links-->
    </div>
    <?php } ?>
    i dont see the clear after the <div id="logoWrapper">

  8. #8
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: gap on top of page

    i dont see the clear after the <div id="logoWrapper">

    did that and it didnt fix the problem, it just removed my image from my top menu area
    What did you remove then that removed the image??

    This is a template re-code issue - see my earlier post
    Zen-Venom Get Bitten

 

 

Similar Threads

  1. Gap at top of product listing - Remove
    By rbevis in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 21 Feb 2009, 05:39 AM
  2. gap at top of page
    By enddes in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 7 Jan 2009, 05:01 PM
  3. gap at the top...
    By Badvoc in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 5 Jul 2008, 11:48 AM
  4. White gap at top of page in Firefox?
    By hairhardware in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 4 Jun 2008, 11:03 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg