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

floatandposition. They are both used to position your element, use one or the other. Not both. – Kyle Sevenoaks Oct 22 '12 at 12:11