Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having a problem with my webpage in Internet Explorer, when I hover over the navigation it switches to compatibility view and says it has because of a problem.

When I add this code:

<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>

The whole screen goes white when hovering over the navigation. The html code for the navigation is:

<div id="nav">
            <ul>
                <li class="m0"><a  href="http://www.website.co.uk/index.html"><span>HOME</span></a></li>
                <li class="m2"><a  href="http://www.website.co.uk/services.html"><span>SERVICES</span></a></li>
                <li class="m3"><a  href="http://www.website.co.uk/gallery.html"><span>GALLERY</span></a></li>
                <li class="m5"><a  href="http://www.website.co.uk/latest.html"><span>NEW PRODUCTS</span></a></li>
                <li class="m4"><a  href="http://www.website.co.uk/about.html"><span>ABOUT US</span></a></li>
                <li class="m4"><a  href="http://www.website.co.uk/testimonials.html"><span>TESTIMONIALS</span></a></li>
                <li class="m5"><a  href="http://www.website.co.uk/links.html"><span>WEBSITE LINKS</span></a></li>
                <li class="m5"><a  href="http://www.website.co.uk/contact.html"><span>CONTACT US</span></a></li>

            </ul>   
        </div>

The css is:

#nav ul li{

   list-style-type:none;
   float: left;
   position: relative;
   top: -9px;
   left: -25px;


 }



#nav{
 font-weight: bold;
width:810px;
  text-align: center;

} 

#nav li a:hover { background-image: url(images/m0.gif); color: #FFFFFF; }



 #nav a{

    text-decoration: none;
    outline: medium none;
     color: #818181;
     line-height: 35px;
     font-size: 10px;
     display: block;

 }

Please can you help me with this issue?

Thanks

Edit:

I have taken out float and this still shows the same problem and also tried taking out relative. This issue stops when I take out the hover : #nav li a:hover { background-image: url(images/m0.gif); color: #FFFFFF; } But I need this line in there.

Edit if I take away list-style-type:none; as well the problem goes but leaves bullet points then :(

Edit: I have added a temporary fix which puts the image appearing when hovered on just below by adding:

padding: 0px 0px 0px;enter code here

But this probably is not a good way to do it and I have only tested it in Firefox and IE8.

The webpage is http://www.hrsevents.co.uk

share|improve this question
Do you have link to the webpage? – Ray Eatmon Oct 22 '12 at 12:11
2  
Use the correct doctype, and choose between float and position. They are both used to position your element, use one or the other. Not both. – Kyle Sevenoaks Oct 22 '12 at 12:11
@RayEatmon yes the website is www.hrsevents.co.uk – Rajin Oct 22 '12 at 12:16
@KyleSevenoaks I have also used various doctypes and chosen float or position but it still does the same. – Rajin Oct 22 '12 at 13:48

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.