Home › Forums › CSS › Dropdown menu padding, spacing! › Reply To: Dropdown menu padding, spacing!
December 28, 2015 at 6:19 am
#236212
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.