Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6889665
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:11:04+00:00 2026-05-27T06:11:04+00:00

I have to admit I am COMPLETELY stumped on this one. I’ve been scouring

  • 0

I have to admit I am COMPLETELY stumped on this one. I’ve been scouring the internet for a fix, but if this has already been addressed, I do sincerely apologize in advance.

I’m working on a website which needs to work perfectly in, at the very least, IE8. I’ve disabled some of the pretty stuff for IE6 and remember it working fine in all versions. Also works fine in Firefox, Chrome, and Safari. However, today, it just decided to BREAK. Here are the problems:

  1. Page will simply not load in IE6, 7, or 8. My only guess is there is a script or something in the head that’s halting the browser. I’ve tried loading it after removing all scripts and links in the head, to no avail. It’s just a white page. How can I fix this?

  2. When the page used to load, the top navigation was broken in all versions of IE. In Firefox, Chrome, or Safari, it was fine. Each link in the navigation is an <li>, inside which is an <a>. When the user rolls over an <li>, the corresponding “spotlight” image below it would swap, via a custom bit of jquery. But now the link doesn’t even appear.

  3. For some reason, the images toward the bottom with little tabbed links in them are breaking. In their normal state, they are fine. Upon rollover the tab is meant to pop out a bit and change color. I have border-radius and box-shadow on them, and am also using CSS3 pie on the container. However, on rollover, the corners turn black. It looks like a png not being displayed properly, but they’re made with CSS. This issue is not as pressing as getting basic page functionality back, as I could just revert to using images for this, but it’s also a heck of a head-scratcher.

In my office we are using IE9 natively on Windows 7, along with a program called IETester to pull up the site in the other versions. We have a rather old computer running IE6 natively as well, but the results are the same for all.

This project is getting close to deadline, so for it to just up and break like this is quite distressing. If anyone has any idea what went wrong here, please let me know. The site is being hosted at:

This location

The page is put together with a php include for header.php and footer.php.

Just so you know what’s being linked in the header:

<link href="css/style.css" rel="stylesheet" type="text/css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript" ></script>  
<script src="js/libs/modernizr-2.0.6.min.js" type="text/javascript" ></script>
<script src="js/script.js" type="text/javascript" ></script>
<script src="js/plugins.js" type="text/javascript" ></script>
<script src="js/libs/PIE.js" type="text/javascript" ></script>
<!--[if IE 6]>
<link href="css/ie6.css" rel="stylesheet" type="text/css" />
<![endif]-->

Within style, reset and typography stylesheets are daisychained on via @import. They are inside the css directory as well.

Here is my header file, starting from the body tag:

<body>

    <div id="wrapper">

        <div id="header">

            <div id="masthead"></div>

            <ul class="nav">
                <li class="nav_spacer_left"></li>
                <a href="#" id="nav1"><li class="index"></li></a>
                <a href="##" id="nav2"><li class="works"></li></a>
                <a href="###" id="nav3"><li class="products"></li></a>
                <a href="####" id="nav4"><li class="partners"></li></a>
                <a href="#####" id="nav5"><li class="company"></li></a>
                <a href="######" id="nav6"><li class="contact"></li></a>
                <li class="nav_spacer_right"></li>
            </ul>

            <div id="lights">       
                <div class="nav_light" id="nav1_light"></div>
                <div class="nav_light" id="nav2_light"></div>
                <div class="nav_light" id="nav3_light"></div>
                <div class="nav_light" id="nav4_light"></div>
                <div class="nav_light" id="nav5_light"></div>
                <div class="nav_light" id="nav6_light"></div>
            </div>


        </div><!--! end of #Header -->

    <div class="clear"></div>

        <div id="background">
            <div class="shelf"></div>

            <div class="content">

Here is the jQuery for the spotlights, very basic stuff:

/*  
    Spotlights
*/
$(document).ready(function() {

$('#nav1').hover(function() {
    $('#nav1_light').addClass('nav_light_bright');
        }, function() {
    $('#nav1_light').removeClass('nav_light_bright');
});

$('#nav2').hover(function() {
    $('#nav2_light').addClass("nav_light_bright");
        }, function() {
    $('#nav2_light').removeClass("nav_light_bright");
});

$('#nav3').hover(function() {
    $('#nav3_light').addClass("nav_light_bright");
        }, function() {
    $('#nav3_light').removeClass("nav_light_bright");
});

$('#nav4').hover(function() {
    $('#nav4_light').addClass("nav_light_bright");
        }, function() {
    $('#nav4_light').removeClass("nav_light_bright");
});

$('#nav5').hover(function() {
    $('#nav5_light').addClass("nav_light_bright");
        }, function() {
    $('#nav5_light').removeClass("nav_light_bright");
});

$('#nav6').hover(function() {
    $('#nav6_light').addClass("nav_light_bright");
        }, function() {
    $('#nav6_light').removeClass("nav_light_bright");
});

})

If asking people to dig around my code makes me a jerk, again, I sincerely apologize. I really appreciate anyone who is kind enough to help me out with this and want to say thank you in advance. If it’s all just some tiny little unclosed tag or something, rest assured I will be headdesking for at least ten minutes.

I was having problems posting the question, so instead of linking to the pages I included some of the script here. If you want to have a look at all of the css, it’s in the /css/ directory of the site I linked to earlier. Of course I can post more code here if needed.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T06:11:05+00:00Added an answer on May 27, 2026 at 6:11 am

    Fixed it. It was a space generating above the doctype without me knowing! :-O

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Have spent most of the morning on this one and have to admit that
I've seen this and I have to admit I'm pretty impressed: (source: blogspot.com )
This is my first post and I have to admit, I am terrible at
I've been doing project Euler for a few days, and I have to admit
I have this simple script that I'm working on. I must admit, I'm totally
Willing to admit I'm a complete .NET newbie, but I have extensive experience in
I must admit I have researched a bit but keep coming into a block
This site has been up for several months now and has been working fine.
I have been searching this since yesterday and still nothing. From all that researching
i have to admit, i never really completely got the *nix filesystem permission model.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.