Home › Forums › CSS › Unable to make dropdown menu from sticky menu › Reply To: Unable to make dropdown menu from sticky menu
August 30, 2013 at 2:17 am
#148559
Member
Your #sticky
div does NOT have a class of .sticky
in the HTML you posted.
So this
.sticky ul ul {
display: none;
margin-left: 200px;
}
.sticky ul li:hover > ul {
display: block;
}
is wrong.
Try
#sticky ul ul {
display: none;
margin-left: 200px;
}
#sticky ul li:hover > ul {
display: block;
}
or give the div a class of .sticky
.