Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Sep 2008
    Posts
    9
    Plugin Contributions
    0

    Default Another White Space above logo

    I have read what i could find of the whitespace issues and it solved some of my problems in FF but in IE7 i cant seem to get the white space to dissapear above my logo im not sure i have looked for issues in both my style sheet and in my tpl_header file. Any help would be greatly appreciated.

    http://www.innate-motorsports.com/

    thats my site if somebody could take a look

  2. #2
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,690
    Plugin Contributions
    11

    Default Re: Another White Space above logo

    Couple of things to try.

    You have an empty <h1> in your tagline and your logo image has both caps and spaces. Some 'puters don't like caps and spaces.

    Firefox can handle eliminating empty calls but IE ......
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  3. #3
    Join Date
    Sep 2008
    Posts
    9
    Plugin Contributions
    0

    Default Re: Another White Space above logo

    i think i got rid of the empty <h1> now but still no changes i havent had any issues in IE7 with other images and capitals in their file names maybe you could take a look at my tpl_header i am not sure how to upload it if you let me know i could show you

  4. #4
    Join Date
    Sep 2008
    Posts
    9
    Plugin Contributions
    0

    Default Re: Another White Space above logo

    This is my tpl_header file

    <!--bof-header logo and navigation display-->
    <?php
    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?>

    <div id="headerWrapper">
    <!--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>
    <?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 } } ?>

    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
    <?php }?>
    </ul>
    </div>
    <div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
    <br class="clearBoth" />
    </div>
    <!--eof-navigation display-->

    <!--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>
    <?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
    <div id="taglineWrapper">
    <?php
    if (HEADER_SALES_TEXT != '') {
    ?>
    <div id="tagline"></div>
    <?php
    }
    ?>
    <?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
    }
    }
    ?>
    </div>
    <?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
    </div>
    <br class="clearBoth" />
    <!--eof-branding display-->

    <!--eof-header logo and navigation display-->

  5. #5
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,690
    Plugin Contributions
    11

    Default Re: Another White Space above logo

    the filename is defined under HEADER_LOGO_IMAGE in another file. Use the Developers Tool Kit to find the file.
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  6. #6
    Join Date
    Sep 2008
    Posts
    9
    Plugin Contributions
    0

    Default Re: Another White Space above logo

    thanks i changed the filename but still not fixed any other ideas

  7. #7
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,690
    Plugin Contributions
    11

    Default Re: Another White Space above logo

    the problem is, once again, with the clear both calls.

    You have two -- one in a div and one in a br

    Use your firefox view source to find around line 39
    <div id="navMainSearch"><form name="quick_find_header" action="http://www.innate-motorsports.com/index.php?main_page=advanced_search_result" method="get"><input type="hidden" name="main_page" value="advanced_search_result" /><input type="hidden" name="search_in_description" value="1" /><input type="text" name="keyword" size="6" maxlength="30" style="width: 100px" value="Enter search keywords here" onfocus="if (this.value == 'Enter search keywords here') this.value = '';" onblur="if (this.value == '') this.value = 'Enter search keywords here';" />&nbsp;<input type="submit" value="Search" style="width: 45px" /></form></div>
    <br class="clearBoth" />
    </div>
    <div class="clearBoth"></div>
    <!--eof-navigation display-->
    and change to read
    <div id="navMainSearch"><form name="quick_find_header" action="http://www.innate-motorsports.com/index.php?main_page=advanced_search_result" method="get"><input type="hidden" name="main_page" value="advanced_search_result" /><input type="hidden" name="search_in_description" value="1" /><input type="text" name="keyword" size="6" maxlength="30" style="width: 100px" value="Enter search keywords here" onfocus="if (this.value == 'Enter search keywords here') this.value = '';" onblur="if (this.value == '') this.value = 'Enter search keywords here';" />&nbsp;<input type="submit" value="Search" style="width: 45px" /></form></div>
    <!--eof-navigation display-->
    Without haveing the ability to "see" into your site, I can't tell you where the code is located.
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  8. #8
    Join Date
    Sep 2008
    Posts
    9
    Plugin Contributions
    0

    Default Re: Another White Space above logo

    I think we are getting somewhere now cause it looks good in IE7 ######## FF has the navheader image cut off short

  9. #9
    Join Date
    Sep 2008
    Posts
    9
    Plugin Contributions
    0

    Default Re: Another White Space above logo

    i got my nav header fixed but it seems like when i fix another problem another arises cause now my logo is off center in FF but not IE7 thanks again for your help

  10. #10
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,690
    Plugin Contributions
    11

    Default Re: Another White Space above logo

    They look same same to me.
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. White Space Above Header
    By Chrissy Morris in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 18 Nov 2011, 04:22 PM
  2. White space above logo in FF but not in IE
    By Yiannis in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 7 Jan 2009, 04:31 AM
  3. White Space....I Know Another White Space Issue...Cant Get Rid Of It
    By enchantedlingerie in forum Templates, Stylesheets, Page Layout
    Replies: 11
    Last Post: 18 Apr 2007, 03:05 PM
  4. White space above logo?
    By tracimurphy in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 27 Aug 2006, 02:42 PM
  5. White Space above left sidebox
    By jordymacsmom in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 21 Jun 2006, 07:31 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