Forums

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

Home Forums CSS JQuery slide animation reveal div height issue Reply To: JQuery slide animation reveal div height issue

#185100
Soren
Participant

One way is to give the parent li position: relative and the ul position: absolute

li {
  position: relative;  
}

li ul {
  position: absolute;
  z-index: 1; // or higher if needed 
}

play with the top, right, bottom and or left properties for the li ul to move it into place.