Reputation: 663
I'm working on a new website. I've done the basic layout. I'm trying to keep to the strict HMTL5 standards so I'm using lots of CSS3 tricks. also at the moment it only targets 'modern' browsers. I'm sure I'm missing something but I can't select any of the menu items? I'm trying to use jquery's mouse enter mouseexit functions on the
Upvotes: 0
Views: 618
Reputation: 3423
Give the CSS rule z-index: 10;
to your nav
and try.
At the moment, your main section
has gone above the nav
. so using z-index would do the trick.
Furthermore add this to see if the hover is working properly for the list items so you know it is accessible.
nav li:hover{
background: #f00;
}
Upvotes: 2