|
your placing your ul over it.
#menu ul {
position:relative;
left:50px;
background:transparent;
list-style:none;
margin:0;
padding-top:6px;
padding-left:30px;
z-index:3;
}
alter zIndex to 1.
most common fault when you can't select something is that u are placing something over it, it is easily checked by applying borders on elements.
and remember they should be a different color than what they cover. Elements with unbrooken border will then be the top ones.
example put:
border:black 1px solid;
in the above class and notice the difference in the border box at the edit field when you alter the zIndex.
|