Note that there are some explanatory texts on larger screens.

plurals
  1. POIE9 (and IE8) drop down hover issues
    primarykey
    data
    text
    <p>I have spent much time on research on this topic and I'm not finding a solution for my particular problem even though I have come across similar issues but their solutions don't seem to fit mine. The issue I"m having does not exist in any non-IE browsers. The main navigation of the site I'm building (#mainNav) when I hover over the main a link to view the drop down, the the focus of the link seems to only be on the actual text. So, when I try to move the mouse down the list it gets no further than the main link text before the hand turns back to an arrow and the menu disappears. This is a CSS3 menu that is working on another site successfully in all browsers and there doesn't appear to be any IE fixes, so I grabbed the code and decided to use it for this site. Everything went well until I checked it in IE :/ </p> <p>These are the areas that I looked at (that normally are the issue in cases such as this): display-block (exists on all "a" tags), removed margins and increased padding (didn't help), assigned a height value (didn't help), increased line-height (nope). I read in other blogs that not having a background color on the link could be an issues (nope), also read that using a transparent 1px image would do the trick (nope). When I say "nope" that's assuming I incorporated the fix correctly. </p> <p>I appreciate the help very much! </p> <p>Here is the CSS:</p> <pre><code>/* //////// MAIN NAVIGATION //////// */ /* Reset */ #navMain, #navMain ul, #navMain li, #navMain a { border:none; font-weight:normal; margin:0; outline:none; padding:0; z-index:1000; } /* Menu */ #mainNav-wrap { width:100%; height:47px; float:left; background:#00aeef; border-top:#014964 1px solid; box-shadow: 0px 2px 2px #999999; } #navMain { /*height:40px;*/ width:960px; position:relative; z-index:500; margin:0 auto; } #navMain li { display:block; float:left; height:40px; list-style:none; /*padding:40px 8px 0 4px;*/ position:relative; text-transform:uppercase; } #navMain li li { text-transform:capitalize; } /* Links */ #navMain li a { border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; color:#fff; display:block; font-size:18px; line-height:18px; font-family:'Raleway', sans-serif; padding:15px 19px; text-decoration:none; text-shadow:0px 1px 1px rgba(0,0,0,.1); transition:color .2s ease-in-out; -webkit-transition:color .2s ease-in-out; -moz-transition:color .2s ease-in-out; -ms-transition:color .2s ease-in-out; -o-transition:color .2s ease-in-out; } #navMain li:first-child a {border-left:none;} #navMain li:last-child a{border-right:none;} #navMain li:hover &gt; a {background:#565454;color:#fff200;} /* Sub Menu */ #navMain ul { background: #565454; border-radius: 0 5px 5px 5px; -moz-border-radius: 0 5px 5px 5px; -webkit-border-radius: 0 5px 5px 5px; position:absolute; left: 0; top: 46px; opacity: 0; filter: alpha(opacity = 0); transition: opacity .25s ease .1s; -moz-transition: opacity .25s ease .1s; -ms-transition: opacity .25s ease .1s; -o-transition: opacity .25s ease .1s; -webkit-transition: opacity .25s ease .1s; min-width:200px; } #navMain ul.electronics { min-width:350px; } #navMain li:hover &gt; ul {opacity:1;filter: alpha(opacity = 100);} #navMain ul li { height:0; overflow:hidden; padding:0; transition: height .25s ease .1s; -moz-transition: height .25s ease .1s; -ms-transition: height .25s ease .1s; -o-transition: height .25s ease .1s; -webkit-transition: height .25s ease .1s; } #navMain li:hover &gt; ul li {height:38px;overflow:visible;padding:0;} #navMain ul li a { border:none; color:#fff;display:block; font-size:18px; margin:4px 4px; padding:8px 14px 8px 14px; white-space:nowrap; width:200px; /* Stretches Submenu */ } #navMain ul li:last-child {margin-bottom:6px;} #navMain ul li:last-child a {border:none;padding:4px 14px 1px 14px;} #navMain ul li a:hover {background:none;} #navMain ul li span {white-space:nowrap;} .navMain_buffer {height:8px;} /* ////////// MAIN CONTENT /////////// */ </code></pre> <p>Here is the HTML:</p> <pre><code>&lt;div id="mainNav-wrap"&gt; &lt;ul id="navMain"&gt; &lt;li&gt;&lt;a href="#" title="Electronics"&gt;ELECTRONICS&lt;/a&gt; &lt;ul class="electronics"&gt; &lt;li&gt;&lt;a href="#" title="HDTVs 19&amp;quot;-32&amp;quot;"&gt;HDTVs 19&amp;quot;-32&amp;quot;&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="HDTVs 37&amp;quot; and Up"&gt;HDTVs 37&amp;quot; and Up&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Gaming Systems"&gt;Gaming Systems&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="HOME THEATER"&gt;Home Theater&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Stereos and Home Theater Systems"&gt;Stereos and Home Theater Systems&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Digital Cameras and Camcorders"&gt;Digital Cameras and Camcorders&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Digital Cameras and Camcorders"&gt;Small Electronics&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Computers"&gt;Computers&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="#" title="Laptops"&gt;Laptops&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Tablets"&gt;Tablets&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Desktops"&gt;Desktops&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Computer Desks"&gt;Computer Desks&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Appliances"&gt;APPLIANCES&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="#" title="Washer and Dryers"&gt;Washer and Dryers&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Refrigerators"&gt;Refrigerators&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Freezers"&gt;Freezers&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Ranges"&gt;Ranges&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Bedrooms"&gt;Bedrooms&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="#" title="Bedroom Sets"&gt;Bedroom Sets&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Kid's Bedrooms"&gt;Kid's Bedrooms&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Mattresses"&gt;Mattresses&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Dinning Rooms"&gt;Dinning Rooms&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Living Rooms"&gt;Living Rooms&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="#" title="Recliners"&gt;Recliners&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Sectionals"&gt;Sectionals&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Living Room Sets"&gt;Living Room Sets&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" title="Accessories"&gt;Accessories&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/div&gt;&lt;!-- /END main-nav-wrap --&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload