Forums

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

Home Forums CSS Dropdown menu padding, spacing! Reply To: Dropdown menu padding, spacing!

#236212
michaelgearon
Participant

Supporting Paulie answer it is not clear what you are asking for. If you are suggesting the gap between top level navigation and the dropdown menu you need to modify these two bits of CSS:

#top-menu li > a{
   padding-bottom: 60px; /* remove this */
}
.nav li ul{
  position: absolute;
  top: 52px; /*Adjust this to around 33px */
  left: -27px;
  padding: 20px;
}

If you are trying to adjust the list items in the dropdown menu it is as Paulie described above, adjust the 20px padding.