Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Unable to make dropdown menu from sticky menu Reply To: Unable to make dropdown menu from sticky menu

#148559
Paulie_D
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.