Results 1 to 8 of 8
  1. #1
    Join Date
    Jun 2006
    Posts
    23
    Plugin Contributions
    0

    Default A Missing Image in Explorer

    I am having the hardest time trying to fix this missing image link.

    http://www.goodlifephoto.com/store/

    If you look at the top left just under the navigation there is an image missing "X" but only shows up in Explorer. When I rightclick it to find out what the image is so I can fix it only goes to the directory where it is:

    includes/templates/classic/images/

    i've looked at the logo file, etc. can't seem to fix it.

    any suggestions ideas to help?

  2. #2
    Join Date
    Sep 2006
    Posts
    542
    Plugin Contributions
    0

    Default Re: A Missing Image in Explorer

    It is in your header

    <!--bof-branding display-->
    <div id="logoWrapper">
    <div id="logo"><a href="http://www.goodlifepictures.com/store/">

    <img src="includes/templates/classic/images/" alt="" /></a></div>

    code in red needs to be removed.

  3. #3
    Join Date
    Jun 2006
    Posts
    23
    Plugin Contributions
    0

    Default Re: A Missing Image in Explorer

    in the tpl_header file? i guess i'm not finding that code in that file so maybe i'm missing something.
    Last edited by hmdesigns; 25 Apr 2007 at 05:08 PM.

  4. #4
    Join Date
    Sep 2006
    Posts
    542
    Plugin Contributions
    0

    Default Re: A Missing Image in Explorer

    in includes/templates/your-template/common/tpl_header.php

    Just below the <div id="logoWrapper">

    If you can't find it there then log into admin and under tools and then Developers Tool Kit do a search.

  5. #5
    Join Date
    Jun 2006
    Posts
    23
    Plugin Contributions
    0

    Default Re: A Missing Image in Explorer

    i see where you're talking about, but we don't have code similar to what you are mentioning in that file after looking at the Logo Wrapper, which is where I have our navigation map as well:

    <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>

  6. #6
    Join Date
    Sep 2006
    Posts
    542
    Plugin Contributions
    0

    Default Re: A Missing Image in Explorer

    Then what is the nex piece of code?

  7. #7
    Join Date
    Jun 2006
    Posts
    23
    Plugin Contributions
    0

    Default Re: A Missing Image in Explorer

    sorry - this code all appears to be a part of this:

    <!--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"><?php echo HEADER_SALES_TEXT;?></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-->

  8. #8
    Join Date
    Sep 2006
    Posts
    542
    Plugin Contributions
    0

    Default Re: A Missing Image in Explorer

    Open your developers Tool Kit and search for this code

    <!--bof-branding display-->





    The miss placed code is here between the branding display. It will be coded in php

    <!--bof-branding display-->
    <div id="logoWrapper">
    <div id="logo"><a href="http://www.goodlifepictures.com/store/"><img src="includes/templates/classic/images/" alt=""></a></div>
    </div>
    <br class="clearBoth">

    <!--eof-branding display-->

    I have rechecked your code and you are not using the logWrapper as your logo is above that so in your tpl_header.php find the above code and change to the following code. Back up first.

    <!--bof-branding display-->
    <div id="logoWrapper">
    <div id="logo"></div>
    </div>
    <br class="clearBoth">

    <!--eof-branding display-->

    If there is too much of a space left after removing the unwanted code you can remove that code all together.

 

 

Similar Threads

  1. Confirm Order Button Missing in Explorer 8
    By jill8026 in forum General Questions
    Replies: 7
    Last Post: 27 Feb 2010, 04:39 PM
  2. Replies: 13
    Last Post: 6 Aug 2009, 05:10 PM
  3. Image Distortion in Internet Explorer
    By molls2714 in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 11 Jul 2008, 04:02 PM
  4. Add to cart missing in internet explorer
    By Cal in forum General Questions
    Replies: 4
    Last Post: 12 Jun 2007, 03:06 AM
  5. Subcategory Image Layout in Explorer
    By dietcokelemon in forum Basic Configuration
    Replies: 2
    Last Post: 4 Aug 2006, 01:21 AM

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